diff options
author | Paul Gilbert | 2019-07-24 20:32:14 -0700 |
---|---|---|
committer | Paul Gilbert | 2019-07-24 20:32:14 -0700 |
commit | 58498cf5f21375c3ab89a8486175ff8de087bdf7 (patch) | |
tree | 62f72f4033f6369ae492131d3c5b52e2e6620d90 /engines/glk/glulxe | |
parent | a1414f9ad6739cd411ca79ad77359ae4858d1379 (diff) | |
download | scummvm-rg350-58498cf5f21375c3ab89a8486175ff8de087bdf7.tar.gz scummvm-rg350-58498cf5f21375c3ab89a8486175ff8de087bdf7.tar.bz2 scummvm-rg350-58498cf5f21375c3ab89a8486175ff8de087bdf7.zip |
GLK: Fixing some gcc 8 warnings
Diffstat (limited to 'engines/glk/glulxe')
-rw-r--r-- | engines/glk/glulxe/glulxe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/glulxe/glulxe.h b/engines/glk/glulxe/glulxe.h index 150decd748..ab7a3d3046 100644 --- a/engines/glk/glulxe/glulxe.h +++ b/engines/glk/glulxe/glulxe.h @@ -426,7 +426,7 @@ public: /** * Display an error in the error window, and then exit. */ - void fatal_error_handler(const char *str, const char *arg, bool useVal, int val); + void NORETURN_PRE fatal_error_handler(const char *str, const char *arg, bool useVal, int val); /** * Display a warning in the error window, and then continue. |