xfree86: xf86.h: drop BOOLTOSTRING
Not used anywhere, so no need to keep it any longer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
d31d3178bf
commit
a6579faa43
|
@ -74,8 +74,6 @@ extern _X_EXPORT int platformSlotClaimed;
|
||||||
|
|
||||||
#define XF86SCRNINFO(p) xf86ScreenToScrn(p)
|
#define XF86SCRNINFO(p) xf86ScreenToScrn(p)
|
||||||
|
|
||||||
#define BOOLTOSTRING(b) ((b) ? "TRUE" : "FALSE")
|
|
||||||
|
|
||||||
/* Compatibility functions for pre-input-thread drivers */
|
/* Compatibility functions for pre-input-thread drivers */
|
||||||
static inline _X_DEPRECATED int xf86BlockSIGIO(void) { input_lock(); return 0; }
|
static inline _X_DEPRECATED int xf86BlockSIGIO(void) { input_lock(); return 0; }
|
||||||
static inline _X_DEPRECATED void xf86UnblockSIGIO(int wasset) { input_unlock(); }
|
static inline _X_DEPRECATED void xf86UnblockSIGIO(int wasset) { input_unlock(); }
|
||||||
|
|
|
@ -359,7 +359,7 @@ xf86VTLeave(void)
|
||||||
IHPtr ih;
|
IHPtr ih;
|
||||||
|
|
||||||
DebugF("xf86VTSwitch: Leaving, xf86Exiting is %s\n",
|
DebugF("xf86VTSwitch: Leaving, xf86Exiting is %s\n",
|
||||||
BOOLTOSTRING((dispatchException & DE_TERMINATE) ? TRUE : FALSE));
|
(dispatchException & DE_TERMINATE) ? "TRUE" : "FALSE");
|
||||||
#ifdef DPMSExtension
|
#ifdef DPMSExtension
|
||||||
if (DPMSPowerLevel != DPMSModeOn)
|
if (DPMSPowerLevel != DPMSModeOn)
|
||||||
DPMSSet(serverClient, DPMSModeOn);
|
DPMSSet(serverClient, DPMSModeOn);
|
||||||
|
|
Loading…
Reference in New Issue