diff options
Diffstat (limited to 'xkbcomp/xkbscan.c')
-rw-r--r-- | xkbcomp/xkbscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xkbcomp/xkbscan.c b/xkbcomp/xkbscan.c index 22a034fd9..4fb575536 100644 --- a/xkbcomp/xkbscan.c +++ b/xkbcomp/xkbscan.c @@ -31,7 +31,7 @@ #include <X11/XKBlib.h> #include "tokens.h" -#define DEBUG_VAR scanDebug + #include "utils.h" #include "parseutils.h" @@ -606,7 +606,7 @@ yyGetIdent(int first) static int yyGetNumber(int ch) { - const int nMaxBuffSize = 1024; + #define nMaxBuffSize 1024 int isFloat = 0; char buf[nMaxBuffSize]; int nInBuf = 0; |