mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 05:01:40 +00:00
Shut up returning functions with noreturn attribute warning
This commit is contained in:
parent
b248479376
commit
dd859ae43d
2 changed files with 7 additions and 4 deletions
|
@ -1193,7 +1193,7 @@ const char *CG_ConfigString( int index );
|
||||||
const char *CG_Argv( int arg );
|
const char *CG_Argv( int arg );
|
||||||
|
|
||||||
void QDECL CG_Printf( const char *msg, ... ) __attribute__ ((format (printf, 1, 2)));
|
void QDECL CG_Printf( const char *msg, ... ) __attribute__ ((format (printf, 1, 2)));
|
||||||
void QDECL CG_Error( const char *msg, ... ) __attribute__ ((format (printf, 1, 2)));
|
void QDECL CG_Error( const char *msg, ... ) __attribute__ ((noreturn, format (printf, 1, 2)));
|
||||||
|
|
||||||
void CG_StartMusic( void );
|
void CG_StartMusic( void );
|
||||||
|
|
||||||
|
@ -1475,7 +1475,7 @@ void CG_CheckChangedPredictableEvents( playerState_t *ps );
|
||||||
void trap_Print( const char *fmt );
|
void trap_Print( const char *fmt );
|
||||||
|
|
||||||
// abort the game
|
// abort the game
|
||||||
void trap_Error( const char *fmt );
|
void trap_Error(const char *fmt) __attribute__((noreturn));
|
||||||
|
|
||||||
// milliseconds should only be used for performance tuning, never
|
// milliseconds should only be used for performance tuning, never
|
||||||
// for anything game related. Get time from the CG_DrawActiveFrame parameter
|
// for anything game related. Get time from the CG_DrawActiveFrame parameter
|
||||||
|
|
|
@ -46,8 +46,11 @@ void trap_Print( const char *fmt ) {
|
||||||
syscall( CG_PRINT, fmt );
|
syscall( CG_PRINT, fmt );
|
||||||
}
|
}
|
||||||
|
|
||||||
void trap_Error( const char *fmt ) {
|
void trap_Error(const char *fmt)
|
||||||
syscall( CG_ERROR, fmt );
|
{
|
||||||
|
syscall(CG_ERROR, fmt);
|
||||||
|
// shut up GCC warning about returning functions, because we know better
|
||||||
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int trap_Milliseconds( void ) {
|
int trap_Milliseconds( void ) {
|
||||||
|
|
Loading…
Reference in a new issue