[Scummvm-git-logs] scummvm master -> d2452ecf95d5be8e960635f1c833d6664322fc88

digitall 547637+digitall at users.noreply.github.com
Fri Sep 27 01:51:16 CEST 2019


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d2452ecf95 GLK: TADS: Fix GCC Compiler Warnings


Commit: d2452ecf95d5be8e960635f1c833d6664322fc88
    https://github.com/scummvm/scummvm/commit/d2452ecf95d5be8e960635f1c833d6664322fc88
Author: D G Turner (digitall at scummvm.org)
Date: 2019-09-27T00:47:54+01:00

Commit Message:
GLK: TADS: Fix GCC Compiler Warnings

The warnings were due to unmatched quote characters.

Changed paths:
    engines/glk/tads/tads2/error.cpp
    engines/glk/tads/tads2/error_handling.cpp


diff --git a/engines/glk/tads/tads2/error.cpp b/engines/glk/tads/tads2/error.cpp
index 5ce0e10..731341f 100644
--- a/engines/glk/tads/tads2/error.cpp
+++ b/engines/glk/tads/tads2/error.cpp
@@ -162,7 +162,7 @@ int errfmt(char *outbuf, int outbufl, const char *fmt, int argc, const erradef *
 }
 
 #ifdef DEBUG
-#error lonjump isn't supported in ScummVM
+#error longjump unsupported in ScummVM
 #endif /* DEBUG */
 
 
diff --git a/engines/glk/tads/tads2/error_handling.cpp b/engines/glk/tads/tads2/error_handling.cpp
index 86b3077..5f72674 100644
--- a/engines/glk/tads/tads2/error_handling.cpp
+++ b/engines/glk/tads/tads2/error_handling.cpp
@@ -137,7 +137,7 @@ int errfmt(char *outbuf, int outbufl, char *fmt, int argc, erradef *argv)
 }
 
 #if defined(DEBUG) && !defined(ERR_NO_MACRO)
-#error longjmp isn't supported in ScummVM
+#error longjmp unsupported in ScummVM
 #endif /* DEBUG */
 
 





More information about the Scummvm-git-logs mailing list