]> git.sur5r.net Git - i3/i3/commitdiff
Use XCB_NONE instead of hard-coded 0. 1725/head
authorIngo Bürk <ingo.buerk@tngtech.com>
Fri, 29 May 2015 18:28:35 +0000 (20:28 +0200)
committerIngo Bürk <ingo.buerk@tngtech.com>
Fri, 29 May 2015 21:49:42 +0000 (23:49 +0200)
src/handlers.c

index c6d3e81d8433bee1387db8e719a28757ac44883a..0eda54b0449edb672705ecaa6bededf73cb16343 100644 (file)
@@ -215,7 +215,7 @@ static void handle_motion_notify(xcb_motion_notify_event_t *event) {
 
     /* Skip events where the pointer was over a child window, we are only
      * interested in events on the root window. */
-    if (event->child != 0)
+    if (event->child != XCB_NONE)
         return;
 
     Con *con;