Added missing fclose() in test program.

Found by Cppcheck.
This commit is contained in:
Philipp Wiesemann 2013-07-13 21:06:56 +02:00
parent 884898cbfc
commit f158b5f47e

View file

@ -84,5 +84,6 @@ main(int argc, char *argv[])
fputs(test[0], stdout);
SDL_free(test[0]);
}
fclose(file);
return (errors ? errors + 1 : 0);
}