소스 검색

Fix a silly typo for Manuel
-Erik

Eric Andersen 23 년 전
부모
커밋
7ce8fe43bd
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);