From: Karl Heuer Date: Tue, 23 May 1995 03:02:53 +0000 (+0000) Subject: (hack_wm_protocols): Cast args of XGetWindowProperty. X-Git-Tag: emacs-19.34~3976 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=270958e87908dc6530e3c393c5e2ffe618e3bf7b;p=emacs.git (hack_wm_protocols): Cast args of XGetWindowProperty. (x_set_border_pixel): Cast args of XSetWindowBorder. --- 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) {