From c0077b41b4c8bb08129db97a2a01d0af55d13fa4 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Wed, 1 Jun 2011 20:54:27 -0700 Subject: [PATCH] XQuartz: Add a semicolon after DEBUG_LOG Don't rely on the macro to provide it Signed-off-by: Jeremy Huddleston --- hw/xquartz/X11Application.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);