From 5bf01b68c777a234f14c5971efa4ce308743aef9 Mon Sep 17 00:00:00 2001 From: Paul Reilly Date: Tue, 14 Feb 1995 21:48:14 +0000 Subject: [PATCH] (x_bitmap_icon): Fix test for unallocated icon bitmap. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 97559002292..bc919788d06 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4302,7 +4302,7 @@ x_bitmap_icon (f, file) else { /* Create the GNU bitmap if necessary. */ - if (!FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) + if (FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id < 0) FRAME_X_DISPLAY_INFO (f)->icon_bitmap_id = x_create_bitmap_from_data (f, gnu_bits, gnu_width, gnu_height); -- 2.39.5