From 25656b532ac6eb7c7327f71bb5d5d348f7a1faba Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 15 Mar 2025 19:52:00 +0300 Subject: [PATCH] engine: platform: posix: fix a typo --- engine/platform/posix/sys_posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/platform/posix/sys_posix.c b/engine/platform/posix/sys_posix.c index 487e815b..cc8ec653 100644 --- a/engine/platform/posix/sys_posix.c +++ b/engine/platform/posix/sys_posix.c @@ -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 ); }