Fix warnings: calloc-transposed-args
This commit is contained in:
committed by
Sam Lantinga
parent
0da2bd49c8
commit
d2ef15d8e6
@@ -57,7 +57,7 @@ SDL_AppResult SDL_AppInit(void **appstate, int argc, char *argv[])
|
||||
if (!SDLTest_CommonInit(state)) {
|
||||
goto onerror;
|
||||
}
|
||||
dialog = SDL_calloc(sizeof(dropfile_dialog), 1);
|
||||
dialog = SDL_calloc(1, sizeof(dropfile_dialog));
|
||||
if (!dialog) {
|
||||
goto onerror;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user