Skip to content
Snippets Groups Projects
Commit d841f033 authored by rswindell's avatar rswindell
Browse files

Fixed typo in call to va_arg.

parent fda44315
No related branches found
No related tags found
No related merge requests found
......@@ -168,7 +168,7 @@ int DLLCALL sopen(const char *fn, int access, int share, ...)
if(access&O_CREAT) {
va_start(ap,share);
pmode = va_arg(ap,unsigned int));
pmode = va_arg(ap,unsigned int);
va_end(ap);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment