Index: src_plugins/hid_lesstif/wt_xpm.c =================================================================== --- src_plugins/hid_lesstif/wt_xpm.c (revision 24744) +++ src_plugins/hid_lesstif/wt_xpm.c (revision 24745) @@ -49,7 +49,7 @@ static unsigned long hex_raw(unsigned long byte) { - return (byte && 0xff) << 8; + return (byte & 0xff) << 8; } Pixmap pcb_ltf_parse_xpm(Display *display, const char **xpm, Pixel bgcolor)