summary refs log tree commit diff
path: root/parse.y
diff options
context:
space:
mode:
authorokan <okan>2017-04-26 21:10:54 +0000
committerokan <okan>2017-04-26 21:10:54 +0000
commit4d85e2e2a606f822f84fff544ec375270c44be34 (patch)
tree378ef684e97a7da5e53417ec500db31447e200fc /parse.y
parent15b9a8fe27a72e58f1fb488ebf14c3fcae4b98a9 (diff)
downloadcwm-4d85e2e2a606f822f84fff544ec375270c44be34.tar.gz
cwm-4d85e2e2a606f822f84fff544ec375270c44be34.tar.xz
cwm-4d85e2e2a606f822f84fff544ec375270c44be34.zip
Switch bwidth type; unfortunately X11 is inconsistent.
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 2c358ea..0c9606a 100644
--- a/parse.y
+++ b/parse.y
@@ -116,7 +116,7 @@ main		: FONTNAME STRING		{
 			conf->stickygroups = $2;
 		}
 		| BORDERWIDTH NUMBER {
-			if ($2 < 0 || $2 > UINT_MAX) {
+			if ($2 < 0 || $2 > INT_MAX) {
 				yyerror("invalid borderwidth");
 				YYERROR;
 			}