From: David Hill Date: Sun, 15 Jul 2012 06:22:31 +0000 (-0400) Subject: pid is not unsigned X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=a0b5fd0279684bedd34f240174907cbe02d53517;p=spectrwm.git pid is not unsigned --- diff --git a/spectrwm.c b/spectrwm.c index 4831ac0..15187b3 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -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);