minor whitespace tidy-up.

Ozkan Sezer 2019-07-31 19:40:50 +03:00
parent f8400cbba9
commit 1b7fc81e3f
1 changed files with 4 additions and 5 deletions

View File

@ -44,8 +44,7 @@ main_getcmdline(void)
{
LPWSTR *argvw;
char **argv;
int i, argc;
int result;
int i, argc, result;
argvw = CommandLineToArgvW(GetCommandLineW(), &argc);
if (argvw == NULL) {
@ -71,13 +70,13 @@ main_getcmdline(void)
/* Run the application main() code */
result = SDL_main(argc, argv);
/* Free argv, to avoid memory leak */
/* Free argv, to avoid memory leak */
for (i = 0; i < argc; ++i) {
SDL_free(argv[i]);
}
SDL_free(argv);
SDL_free(argv);
return result;
return result;
}
/* This is where execution begins [console apps, ansi] */