mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fixed warning.
svn path=/trunk/; revision=769
This commit is contained in:
parent
abd233d61a
commit
c52cbf8517
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,7 @@ void debug_printf(char* fmt, ...)
|
|||
}
|
||||
|
||||
|
||||
void main(int argc, char* argv[])
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
int i;
|
||||
|
||||
|
@ -34,5 +34,6 @@ void main(int argc, char* argv[])
|
|||
debug_printf("Argv[%d]: %x\n",i,argv[i]);
|
||||
debug_printf("Argv[%d]: '%s'\n",i,argv[i]);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue