From 270958e87908dc6530e3c393c5e2ffe618e3bf7b Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 23 May 1995 03:02:53 +0000 Subject: [PATCH] (hack_wm_protocols): Cast args of XGetWindowProperty. (x_set_border_pixel): Cast args of XSetWindowBorder. --- src/xfns.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/xfns.c b/src/xfns.c index 63a58d12011..f1fbd800518 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1380,7 +1380,7 @@ x_set_border_pixel (f, pix) BLOCK_INPUT; XSetWindowBorder (FRAME_X_DISPLAY (f), FRAME_X_WINDOW (f), - pix); + (unsigned long)pix); UNBLOCK_INPUT; if (FRAME_VISIBLE_P (f)) @@ -2301,11 +2301,12 @@ hack_wm_protocols (f, widget) unsigned long nitems = 0; unsigned long bytes_after; - if (Success == XGetWindowProperty (dpy, w, - FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols, - 0, 100, False, XA_ATOM, - &type, &format, &nitems, &bytes_after, - (unsigned char **) &atoms) + if ((XGetWindowProperty (dpy, w, + FRAME_X_DISPLAY_INFO (f)->Xatom_wm_protocols, + 0L, 100L, False, XA_ATOM, + &type, &format, &nitems, &bytes_after, + (unsigned char **) &atoms) + == Success) && format == 32 && type == XA_ATOM) while (nitems > 0) { -- 2.39.2