diff options
Diffstat (limited to 'gob/parse.cpp')
-rw-r--r-- | gob/parse.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gob/parse.cpp b/gob/parse.cpp index a5bffe402a..72f85633b3 100644 --- a/gob/parse.cpp +++ b/gob/parse.cpp @@ -958,17 +958,17 @@ int16 parse_parseVarIndex() { int16 val; operation = *inter_execPtr++; - debug(5, "var parse = %d\n", operation); + debug(5, "var parse = %d", operation); switch (operation) { case 23: case 25: temp = inter_load16() * 4; - debug(5, "oper = %d\n", (int16)*inter_execPtr); + debug(5, "oper = %d", (int16)*inter_execPtr); if (operation == 25 && *inter_execPtr == 13) { inter_execPtr++; val = parse_parseValExpr(); temp += val; - debug(5, "parse subscript = %d\n", val); + debug(5, "parse subscript = %d", val); } return temp; |