summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <jeremyhu@apple.com>2011-06-01 20:54:27 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2011-06-01 20:56:18 -0700
commitc0077b41b4c8bb08129db97a2a01d0af55d13fa4 (patch)
treee65d1b99e3a43aa029f997a113aef7fddd2e961f
parentfbc8aae8e9b5c7b175073f02e79d7ff1d1363a31 (diff)
XQuartz: Add a semicolon after DEBUG_LOG
Don't rely on the macro to provide it Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r--hw/xquartz/X11Application.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/X11Application.m b/hw/xquartz/X11Application.m
index 7c41cbcb5..a51ee828d 100644
--- a/hw/xquartz/X11Application.m
+++ b/hw/xquartz/X11Application.m
@@ -188,7 +188,7 @@ static void message_kit_thread (SEL selector, NSObject *arg) {
- (void) activateX:(OSX_BOOL)state {
size_t i;
- DEBUG_LOG("state=%d, _x_active=%d, \n", state, _x_active)
+ DEBUG_LOG("state=%d, _x_active=%d, \n", state, _x_active);
if (state) {
if(bgMouseLocationUpdated) {
DarwinSendPointerEvents(darwinPointer, MotionNotify, 0, bgMouseLocation.x, bgMouseLocation.y, 0.0, 0.0, 0.0);