From 38daed324464666b5a4bb6a758c60e960b4610f0 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Wed, 27 Mar 2013 19:00:50 +0000 Subject: Fix some warnings caused by lack of noreturn --- src/qcommon/q_shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qcommon/q_shared.h') diff --git a/src/qcommon/q_shared.h b/src/qcommon/q_shared.h index 816657f6..a85e3473 100644 --- a/src/qcommon/q_shared.h +++ b/src/qcommon/q_shared.h @@ -920,7 +920,7 @@ qboolean Info_Validate( const char *s ); void Info_NextPair( const char **s, char *key, char *value ); // this is only here so the functions in q_shared.c and bg_*.c can link -void QDECL Com_Error( int level, const char *error, ... ) __attribute__ ((format(printf, 2, 3))); +void QDECL Com_Error( int level, const char *error, ... ) __attribute__ ((noreturn, format(printf, 2, 3))); void QDECL Com_Printf( const char *msg, ... ) __attribute__ ((format (printf, 1, 2))); -- cgit