From 3fcb8030ae6c8852a30016399046668a88a26a89 Mon Sep 17 00:00:00 2001 From: sezero Date: Fri, 8 Jul 2011 17:27:44 +0000 Subject: [PATCH] progs.h (PR_RunError): Mark the function as noreturn. git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@468 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/progs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/progs.h b/Quake/progs.h index 3a59294c..2b430f2a 100644 --- a/Quake/progs.h +++ b/Quake/progs.h @@ -126,7 +126,7 @@ extern int pr_xstatement; extern unsigned short pr_crc; -void PR_RunError (const char *error, ...) __attribute__((__format__(__printf__,1,2))); +void PR_RunError (const char *error, ...) __attribute__((__format__(__printf__,1,2), __noreturn__)); void ED_PrintEdicts (void); void ED_PrintNum (int ent);