engine: platform: posix: fix a typo

This commit is contained in:
Alibek Omarov
2025-03-15 19:52:00 +03:00
parent 1a791e8556
commit 25656b532a

View File

@@ -149,7 +149,7 @@ void Posix_Daemonize( void )
static void Posix_SigtermCallback( int signal )
{
string reason;
Con_Printf( reason, sizeof( reason ), "caught signal %d", signal );
Q_snprintf( reason, sizeof( reason ), "caught signal %d", signal );
Sys_Quit( reason );
}