Move var decl in puzzles.cgi.c to work with older C

This commit is contained in:
Neale Pickett 2012-06-13 11:23:16 -06:00
parent dcf9328adb
commit 739fd25703
1 changed files with 2 additions and 1 deletions

View File

@ -105,6 +105,7 @@ main(int argc, char *argv[])
struct dirent *e = readdir(opt);
char *cat;
long maxpoints = 0;
FILE *map;
if (! e) break;
@ -120,7 +121,7 @@ main(int argc, char *argv[])
}
/* Read in category's map file, print html until point limit reached */
FILE *map = fopen(package_path("%s/map.txt", cat), "r");
map = fopen(package_path("%s/map.txt", cat), "r");
if (map == NULL) continue;
printf(" <dt>%s</dt>\n", cat);