COMP: Fix for non-ANSI C compilers.

This commit is contained in:
Brad King 2006-06-03 09:42:14 -04:00
parent d857168658
commit 9af54c440d
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#include <stdio.h>
int main(int argc, const char* argv[])
int main(int argc, char** argv)
{
FILE* fout = fopen(argv[argc-1], "w");
printf("Wrap creating \"%s\"\n", argv[argc-1]);