Changed typo va_list to valist.

oldstable
David Elliott 2000-12-18 03:11:32 +00:00 committed by Alexandre Julliard
parent 6e8519b128
commit 2a53800d56
1 changed files with 1 additions and 1 deletions

View File

@ -1701,7 +1701,7 @@ INT __cdecl CRTDLL_scanf( LPCSTR format, ... )
va_start( valist, format );
res = CRTDLL_fscanf(CRTDLL_stdin, format, valist);
va_end(va_list);
va_end(valist);
return res;
}