mirror of
https://github.com/encounter/SDL.git
synced 2025-12-13 07:06:10 +00:00
Fix usage of sizeof() in test/testgles*.c files
This commit is contained in:
@@ -173,7 +173,7 @@ main(int argc, char *argv[])
|
|||||||
quit(2);
|
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) {
|
if (context == NULL) {
|
||||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Out of memory!\n");
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Out of memory!\n");
|
||||||
quit(2);
|
quit(2);
|
||||||
|
|||||||
@@ -614,7 +614,7 @@ main(int argc, char *argv[])
|
|||||||
return 0;
|
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) {
|
if (context == NULL) {
|
||||||
SDL_Log("Out of memory!\n");
|
SDL_Log("Out of memory!\n");
|
||||||
quit(2);
|
quit(2);
|
||||||
|
|||||||
@@ -522,7 +522,7 @@ main(int argc, char *argv[])
|
|||||||
return 0;
|
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) {
|
if (context == NULL) {
|
||||||
SDL_Log("Out of memory!\n");
|
SDL_Log("Out of memory!\n");
|
||||||
quit(2);
|
quit(2);
|
||||||
|
|||||||
Reference in New Issue
Block a user