xorgcfg: fix compilation error

Add missing parentheses to IS_KBDDRIV macros.
This commit is contained in:
Tiago Vignatti 2006-08-08 12:00:34 +03:00 committed by Daniel Stone
parent 7721ee308f
commit ab3ebfefdb
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -37,7 +37,7 @@
#include <X11/Xaw/SimpleMenu.h>
#include <X11/Xaw/SmeBSB.h>
#define IS_KBDDRIV(X) ((strcasecmp((X),"kbd") == 0)
#define IS_KBDDRIV(X) ((strcasecmp((X),"kbd") == 0))
/*
* Types

View File

@ -46,7 +46,7 @@
#include "xf86config.h"
#include "loader.h"
#define IS_KBDDRIV(X) ((strcmp((X),"kbd") == 0)
#define IS_KBDDRIV(X) ((strcmp((X),"kbd") == 0))
#ifndef PROJECT_ROOT
#define PROJECT_ROOT "/usr"