summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoruint23 <[email protected]>2025-05-16 20:27:16 +0100
committeruint23 <[email protected]>2025-05-16 20:27:16 +0100
commit96a87bfadd7bee36c9a4dd7b1d0a3c9ce49714df (patch)
treee9dca578e56e9fa6f337be058c1d6271b3727cf5 /src
parent2f13c69e085564acaee5a3d3ced7341f71488595 (diff)
fix return value for parse_col && remove debug symbol from make instructions
Diffstat (limited to 'src')
-rw-r--r--src/sxwm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sxwm.c b/src/sxwm.c
index 6fce79d..d2ade15 100644
--- a/src/sxwm.c
+++ b/src/sxwm.c
@@ -1048,8 +1048,8 @@ long parse_col(const char *hex)
return WhitePixel(dpy, DefaultScreen(dpy));
}
- /* return col.pixel; */
- return col.pixel |= 0xff << 24;
+ /* return col.pixel |= 0xff << 24; */
+ return col.pixel;
}
void quit(void)