mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
Shut up compiler error
This commit is contained in:
parent
35c1e98934
commit
7471510c8e
1 changed files with 8 additions and 3 deletions
|
@ -162,11 +162,16 @@ qboolean Sys_WritePIDFile( void )
|
|||
char pidBuffer[ 64 ] = { 0 };
|
||||
int pid;
|
||||
|
||||
fread( pidBuffer, sizeof( char ), sizeof( pidBuffer ) - 1, f );
|
||||
pid = fread( pidBuffer, sizeof( char ), sizeof( pidBuffer ) - 1, f );
|
||||
fclose( f );
|
||||
|
||||
pid = atoi( pidBuffer );
|
||||
if( !Sys_PIDIsRunning( pid ) )
|
||||
if(pid > 0)
|
||||
{
|
||||
pid = atoi( pidBuffer );
|
||||
if( !Sys_PIDIsRunning( pid ) )
|
||||
stale = qtrue;
|
||||
}
|
||||
else
|
||||
stale = qtrue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue