aboutsummaryrefslogtreecommitdiff
path: root/common/textconsole.cpp
diff options
context:
space:
mode:
authorMax Horn2009-11-29 21:56:10 +0000
committerMax Horn2009-11-29 21:56:10 +0000
commit5b562407c1373913b244991e0580f9c54fd013d9 (patch)
treed81317643391a83c57cc902b9c25dc72273592ab /common/textconsole.cpp
parent798f3ab7959fca35dd52c5715dc68da68fed58c0 (diff)
downloadscummvm-rg350-5b562407c1373913b244991e0580f9c54fd013d9.tar.gz
scummvm-rg350-5b562407c1373913b244991e0580f9c54fd013d9.tar.bz2
scummvm-rg350-5b562407c1373913b244991e0580f9c54fd013d9.zip
COMMON: Replace NORETURN by NORETURN_PRE & NORETURN_POST
svn-id: r46205
Diffstat (limited to 'common/textconsole.cpp')
-rw-r--r--common/textconsole.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/textconsole.cpp b/common/textconsole.cpp
index 22e4119084..a74540ea73 100644
--- a/common/textconsole.cpp
+++ b/common/textconsole.cpp
@@ -73,7 +73,7 @@ void warning(const char *s, ...) {
#endif
-void NORETURN error(const char *s, ...) {
+void NORETURN_PRE error(const char *s, ...) {
char buf_input[STRINGBUFLEN];
char buf_output[STRINGBUFLEN];
va_list va;