From a0b5fd0279684bedd34f240174907cbe02d53517 Mon Sep 17 00:00:00 2001 From: David Hill Date: Sun, 15 Jul 2012 02:22:31 -0400 Subject: [PATCH] pid is not unsigned --- spectrwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 1.7.10.4