# HG changeset patch # User ib # Date 1314352002 0 # Node ID 162828e38481ff501d8364bbf21180adf28788f5 # Parent f00fc114eb8785e468a9957e12a7bf3dd052af57 Replace data type CARD32 by long. On the client side, properties of format 32 will be stored as long, even if it has more than 32 bits on the platform. This reverts r33610. diff -r f00fc114eb87 -r 162828e38481 gui/ui/widgets.h --- a/gui/ui/widgets.h Thu Aug 25 19:19:53 2011 +0000 +++ b/gui/ui/widgets.h Fri Aug 26 09:46:42 2011 +0000 @@ -59,7 +59,7 @@ Pixmap normal; Pixmap normal_mask; int collection_size; - CARD32 *collection; + long *collection; } guiIcon_t; extern guiIcon_t guiIcon; diff -r f00fc114eb87 -r 162828e38481 gui/wm/ws.c --- a/gui/wm/ws.c Thu Aug 25 19:19:53 2011 +0000 +++ b/gui/wm/ws.c Fri Aug 26 09:46:42 2011 +0000 @@ -1536,7 +1536,7 @@ { XWMHints *wm; Atom iconatom; - CARD32 data[2]; + long data[2]; if (icon->normal) { wm = XGetWMHints(dsp, win);