aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/alan3/scan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/glk/alan3/scan.cpp')
-rw-r--r--engines/glk/alan3/scan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/alan3/scan.cpp b/engines/glk/alan3/scan.cpp
index 4f3855abc8..64c0e6234c 100644
--- a/engines/glk/alan3/scan.cpp
+++ b/engines/glk/alan3/scan.cpp
@@ -78,7 +78,7 @@ static void unknown(char tok[]) {
static int number(char tok[]) {
int i;
- sscanf(tok, "%d", &i);
+ (void)sscanf(tok, "%d", &i);
return i;
}