From a6c504936c820a274d24e628876d101f6c0f9e8a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 13 Jan 2010 06:23:02 +0000 Subject: [PATCH] get \8 and \9 right --- tools/qfcc/source/qc-lex.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/qfcc/source/qc-lex.l b/tools/qfcc/source/qc-lex.l index 3e16bb802..8d5511778 100644 --- a/tools/qfcc/source/qc-lex.l +++ b/tools/qfcc/source/qc-lex.l @@ -525,8 +525,8 @@ make_string (char *token, char **end) error (0, "EOF inside quote"); break; } - case 8: - case 9: + case '8': + case '9': c = 18 + c - '0'; break; case 'x':