diff options
author | Eitan Adler <lists@eitanadler.com> | 2011-01-28 00:06:20 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2011-01-28 00:06:20 -0500 |
commit | 03050fcce76cd3238f1cd15fb2f2298abda53727 (patch) | |
tree | 31546e5536e1228a00a98a18cad0465631b194fd | |
parent | 394f55099bbca6a23073ca64d97973bdc2287ce7 (diff) |
Print pixel colors in hex not decimal
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | xset.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1454,7 +1454,7 @@ query(Display *dpy) printf(" timeout: %d cycle: %d\n", timeout, interval); printf("Colors:\n"); - printf(" default colormap: 0x%lx BlackPixel: %ld WhitePixel: %ld\n", + printf(" default colormap: 0x%lx BlackPixel: 0x%lx WhitePixel: 0x%lx\n", DefaultColormap(dpy, scr), BlackPixel(dpy, scr), WhitePixel(dpy, scr)); |