]> Dogcows Code - chaz/openbox/blobdiff - openbox/place.c
it would seem this cannot return NULL now
[chaz/openbox] / openbox / place.c
index d56adfc89005e4627b54df5adf9947b594fc51b1..a13bc2cbdbff41cdc7e3fe27994ad4ea4656e56a 100644 (file)
@@ -451,9 +451,10 @@ static gboolean place_per_app_setting(ObClient *client, gint *x, gint *y,
     ob_debug("placing by per-app settings");
 
     /* Find which head the pointer is on */
-    if (settings->monitor == 0)
-        /* this can return NULL */
+    if (settings->monitor == 0) {
         screen = pick_pointer_head(client);
+        g_assert(screen);
+    }
     else {
         guint m = settings->monitor;
         if (m < 1 || m > screen_num_monitors)
This page took 0.021309 seconds and 4 git commands to generate.