aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-03-25 09:43:34 +0000
committerAnselm R Garbe <garbeam@gmail.com>2008-03-25 09:43:34 +0000
commit2fe3ccdf581105f4232d5714cee1ebe40870087f (patch)
treea69c168b9dcd2e0ce927f9fd5abab86ba82fcac1
parent07d82c0c2a377fa7cadfa91a8d89123fc7321a2a (diff)
downloaddmenu-2fe3ccdf581105f4232d5714cee1ebe40870087f.tar.gz
dmenu-2fe3ccdf581105f4232d5714cee1ebe40870087f.tar.bz2
dmenu-2fe3ccdf581105f4232d5714cee1ebe40870087f.zip
bugfix of the -0 case in dmenu (thanks to Sander for his hint)
-rw-r--r--dmenu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dmenu.c b/dmenu.c
index b5638b6..78c5a75 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -629,7 +629,7 @@ setup(int x, int y, int w) {
mw = w ? w : DisplayWidth(dpy, screen);
mh = dc.font.height + 2;
if(y < 0) {
- if(y == (int)(unsigned int)-1)
+ if(y == ((~(unsigned int)0)/2)+1)
y = DisplayHeight(dpy, screen) - mh;
else
y = (-1 * y) - mh;
@@ -709,7 +709,7 @@ main(int argc, char *argv[]) {
else if(!strcmp(argv[i], "-y")) {
if(++i < argc)
if(!strcmp(argv[i], "-0"))
- y = (int)(unsigned int)-1;
+ y = ((~(unsigned int)0)/2)+1;
else
y = atoi(argv[i]);
}