diff options
author | marha <marha@users.sourceforge.net> | 2009-07-25 18:22:39 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-07-25 18:22:39 +0000 |
commit | dc3c299dd0995549e2a6973ca0f25b254afd38a5 (patch) | |
tree | 4e041ba8c2c1348b14e7a28c803d860373747a04 /xkbcomp/xkbparse.y | |
parent | cd50a4bbac9375d3cd460bbdf88395f802609daf (diff) | |
download | vcxsrv-dc3c299dd0995549e2a6973ca0f25b254afd38a5.tar.gz vcxsrv-dc3c299dd0995549e2a6973ca0f25b254afd38a5.tar.bz2 vcxsrv-dc3c299dd0995549e2a6973ca0f25b254afd38a5.zip |
Added xkbcomp-1.1.0.tar.gz
Diffstat (limited to 'xkbcomp/xkbparse.y')
-rw-r--r-- | xkbcomp/xkbparse.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xkbcomp/xkbparse.y b/xkbcomp/xkbparse.y index 52afa2b80..63f87bb74 100644 --- a/xkbcomp/xkbparse.y +++ b/xkbcomp/xkbparse.y @@ -1,4 +1,3 @@ -/* $Xorg: xkbparse.y,v 1.3 2000/08/17 19:54:34 cpqbld Exp $ */ /************************************************************ Copyright (c) 1994 by Silicon Graphics Computer Systems, Inc. @@ -24,7 +23,6 @@ THE USE OR PERFORMANCE OF THIS SOFTWARE. ********************************************************/ -/* $XFree86: xc/programs/xkbcomp/xkbparse.y,v 3.11tsi Exp $ */ %token END_OF_FILE 0 @@ -100,6 +98,7 @@ #include <X11/extensions/XKBgeom.h> #include <stdlib.h> +unsigned int parseDebug; %} %right EQUALS @@ -729,8 +728,9 @@ KeySym : IDENT $$= sym; else { char buf[120]; - sprintf(buf,"expected keysym, got %s", - uStringText(scanStr)); + snprintf(buf, sizeof(buf), + "expected keysym, got %s", + uStringText(scanStr)); yyerror(buf); yynerrs++; $$= NoSymbol; |