]> git.eshelyaron.com Git - emacs.git/commitdiff
(hack_wm_protocols): Cast args of XGetWindowProperty.
authorKarl Heuer <kwzh@gnu.org>
Tue, 23 May 1995 03:02:53 +0000 (03:02 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 23 May 1995 03:02:53 +0000 (03:02 +0000)
(x_set_border_pixel): Cast args of XSetWindowBorder.

src/xfns.c

index 63a58d12011017a5b5a998bf825d90988285a919..f1fbd80051858e6fc62b51d2c9bb5a3b01536244 100644 (file)
@@ -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)
        {