JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
pid is not unsigned
authorDavid Hill <dhill@conformal.com>
Sun, 15 Jul 2012 06:22:31 +0000 (02:22 -0400)
committerReginald Kennedy <rk@rejii.com>
Fri, 20 Jul 2012 21:59:29 +0000 (05:59 +0800)
spectrwm.c

index 4831ac0..15187b3 100644 (file)
@@ -6288,7 +6288,7 @@ tryharder:
                return (0);
        }
 
-       ret = strtonum(xcb_get_property_value(pr), 0, UINT_MAX, &errstr);
+       ret = strtonum(xcb_get_property_value(pr), 0, INT_MAX, &errstr);
        free(pr);
 
        return (ret);