Browse Source

Fix a silly typo for Manuel
-Erik

Eric Andersen 21 years ago
parent
commit
7ce8fe43bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/stdio/printf.c

+ 1 - 1
libc/stdio/printf.c

@@ -470,7 +470,7 @@ int vfprintf(FILE * __restrict stream, register const char * __restrict format,
 			}
 		} while (1);
 
-		va_end(ppfs->arg);		/* Need to clean up after va_copy! */
+		va_end(ppfs.arg);		/* Need to clean up after va_copy! */
 	}
 
 	__STDIO_THREADUNLOCK(stream);