mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Fixed compiler warning
svn path=/trunk/; revision=942
This commit is contained in:
parent
75f2f5b22e
commit
072eed4ad3
1 changed files with 4 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
|||
#include <crtdll/conio.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int
|
||||
_cscanf(char *fmt, ...)
|
||||
|
@ -9,12 +10,10 @@ _cscanf(char *fmt, ...)
|
|||
va_list ap;
|
||||
|
||||
//fixme cscanf should scan the console's keyboard
|
||||
|
||||
va_start(ap, fmt);
|
||||
cnt = __vscanf(fmt, ap);
|
||||
va_end(ap);
|
||||
va_start(ap, fmt);
|
||||
cnt = __vscanf(fmt, ap);
|
||||
va_end(ap);
|
||||
return cnt;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue