platform: fix type in formatter string

This commit is contained in:
Xav101
2025-11-17 03:08:38 +08:00
committed by a1batross
parent dd7811e5bc
commit c85c6f80e0
+1 -1
View File
@@ -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