Fix main parameters

This commit is contained in:
Stefan Bühler 2008-07-12 00:24:00 +02:00
parent 16feb1fb2e
commit 424a525e4e
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
int main(char **argv, int argc) {
int main(int argc, char **argv) {
return 0;
}