diff options
Diffstat (limited to 'app/xkbevd/cfgscan.c')
-rw-r--r-- | app/xkbevd/cfgscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/xkbevd/cfgscan.c b/app/xkbevd/cfgscan.c index 6eaef0c0e..4f9ea200b 100644 --- a/app/xkbevd/cfgscan.c +++ b/app/xkbevd/cfgscan.c @@ -241,7 +241,7 @@ int ch; return ERROR; } -struct _Keyword { +static struct _Keyword { char *keyword; int token; } keywords[] = { @@ -255,7 +255,7 @@ struct _Keyword { { "shell", SHELL }, { "sound", SOUND } }; -int numKeywords = sizeof(keywords)/sizeof(struct _Keyword); +static int numKeywords = sizeof(keywords)/sizeof(struct _Keyword); static int yyGetIdent(int first) |