Fix usage of sizeof() in test/testgles*.c files

(cherry-picked from commit 71f2864b3a)
This commit is contained in:
Sylvain 2022-11-17 14:55:49 +01:00 committed by Ozkan Sezer
parent 3a885f888a
commit 4d605ae002
3 changed files with 3 additions and 3 deletions

View file

@ -173,7 +173,7 @@ main(int argc, char *argv[])
quit(2);
}
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(context));
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(*context));
if (context == NULL) {
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Out of memory!\n");
quit(2);

View file

@ -612,7 +612,7 @@ main(int argc, char *argv[])
return 0;
}
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(context));
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(*context));
if (context == NULL) {
SDL_Log("Out of memory!\n");
quit(2);

View file

@ -522,7 +522,7 @@ main(int argc, char *argv[])
return 0;
}
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(context));
context = (SDL_GLContext *)SDL_calloc(state->num_windows, sizeof(*context));
if (context == NULL) {
SDL_Log("Out of memory!\n");
quit(2);