Remove 'malloc' from comment

This commit is contained in:
Sylvain
2021-11-22 16:49:17 +01:00
committed by Sam Lantinga
parent 155db97d14
commit 0445c13aae
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ SDL_HandleSIG(int sig)
signal(sig, SDL_HandleSIG);
/* Send a quit event next time the event loop pumps. */
/* We can't send it in signal handler; malloc() might be interrupted! */
/* We can't send it in signal handler; SDL_malloc() might be interrupted! */
if ((sig == SIGINT) || (sig == SIGTERM)) {
send_quit_pending = SDL_TRUE;
}