diff options
author | Tiago Vignatti <tv02@c3sl.ufpr.br> | 2006-08-08 12:00:34 +0300 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-08-08 12:00:34 +0300 |
commit | ab3ebfefdb7d21aba72a5030f6f93bf4fafed709 (patch) | |
tree | 378dea747801d6197098a3ec0a4280aa5da3dff2 /hw/xfree86/utils/xorgcfg/interface.c | |
parent | 7721ee308fbbb6fc9c969f15fe04b3346c04f843 (diff) |
xorgcfg: fix compilation error
Add missing parentheses to IS_KBDDRIV macros.
Diffstat (limited to 'hw/xfree86/utils/xorgcfg/interface.c')
-rw-r--r-- | hw/xfree86/utils/xorgcfg/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/utils/xorgcfg/interface.c b/hw/xfree86/utils/xorgcfg/interface.c index 3670597e4..9b22dc7cb 100644 --- a/hw/xfree86/utils/xorgcfg/interface.c +++ b/hw/xfree86/utils/xorgcfg/interface.c @@ -66,7 +66,7 @@ #define DefaultXFree86Dir "/usr" #endif -#define IS_KBDDRIV(S) ((strcasecmp((S),"kbd") == 0) +#define IS_KBDDRIV(S) ((strcasecmp((S),"kbd") == 0)) /* * Prototypes |