From c85c6f80e05953663b49e002b20d5533ce46d4a6 Mon Sep 17 00:00:00 2001 From: Xav101 Date: Fri, 14 Nov 2025 22:37:47 -0500 Subject: [PATCH] platform: fix type in formatter string --- 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 ad66da9f..72bafc2d 100644 --- a/engine/platform/posix/sys_posix.c +++ b/engine/platform/posix/sys_posix.c @@ -56,7 +56,7 @@ void Posix_Daemonize( void ) if( daemon > 0 ) { // parent - Con_Reportf( "Child pid: %i\n", daemon ); + Con_Reportf( "Child pid: %ld\n", (long)daemon ); exit( 0 ); } else