summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorRoland Mainz <roland.mainz@nrubsig.org>2004-12-08 07:02:46 +0000
committerRoland Mainz <roland.mainz@nrubsig.org>2004-12-08 07:02:46 +0000
commitafdc7044f7b982cfcb9078275fcdf905f982d944 (patch)
tree38360ad8098713815a56917135248a4f0b1b87d9 /hw
parenteb73d7f749393f6285db64302bc81cb42c4dde18 (diff)
//bugs.freedesktop.org/show_bug.cgi?id=557) attachment #1255
(https://bugs.freedesktop.org/attachment.cgi?id=1255): Do not use "bool" as a variable name in xf86cfg, to avoid compiler bugs. Patch by Donnie Berkholz <spyderous@gentoo.org>.
Diffstat (limited to 'hw')
-rw-r--r--hw/xfree86/utils/xorgcfg/loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/utils/xorgcfg/loader.h b/hw/xfree86/utils/xorgcfg/loader.h
index 3ba5b937a..acf18aa97 100644
--- a/hw/xfree86/utils/xorgcfg/loader.h
+++ b/hw/xfree86/utils/xorgcfg/loader.h
@@ -75,7 +75,7 @@ typedef union {
unsigned long num;
char * str;
double realnum;
- Bool bool;
+ Bool xbool;
OptFrequency freq;
} ValueUnion;