]> code.delx.au - spectrwm/commitdiff
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 4831ac046aee2713b2c771b0eb22a900e9aad75c..15187b3505649e40be9973d92d8ba3cde826ef27 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);