diff options
author | Richard Grenville <[email protected]> | 2014-11-24 22:31:54 +0800 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2015-01-24 16:05:09 +0100 |
commit | a5535fa1eff0c2266d646accc6d19a9c8c0a6eb9 (patch) | |
tree | 3360d286cc641a1dea5fbf6e1e23e1929f959749 /twin/compton-tde | |
parent | 678558b1e9b892721313a59f3a2c8dc60c288f1d (diff) | |
download | tdebase-a5535fa1eff0c2266d646accc6d19a9c8c0a6eb9.tar.gz tdebase-a5535fa1eff0c2266d646accc6d19a9c8c0a6eb9.zip |
Bug fix #244: Build failure with -DDEBUG_EVENTS
Fix build failure with -DDEBUG_EVENTS, caused by incorrect references to
X Sync macros. Thanks to blueyed for reporting. (#244)
(cherry picked from commit 6219569d6cb45be6f2104460e02672dd508e344a)
Diffstat (limited to 'twin/compton-tde')
-rw-r--r-- | twin/compton-tde/compton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c index 7b195f5b0..ad310538b 100644 --- a/twin/compton-tde/compton.c +++ b/twin/compton-tde/compton.c @@ -4595,8 +4595,8 @@ ev_name(session_t *ps, XEvent *ev) { if (ps->xsync_exists) { int o = ev->type - ps->xsync_event; switch (o) { - CASESTRRET(CounterNotify); - CASESTRRET(AlarmNotify); + CASESTRRET(XSyncCounterNotify); + CASESTRRET(XSyncAlarmNotify); } } #endif |