From 2ebb2f8b119de40b8fc98668c5ce300e4f7f0185 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Mon, 5 Jun 2000 14:19:33 +0000 Subject: [PATCH] (x_calc_absolute_position): Declare nchildren unsigned. --- src/xterm.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/xterm.c b/src/xterm.c index ba719f76897..ef81aa7bb91 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11141,7 +11141,10 @@ xim_initialize (dpyinfo, resource_name) XRegisterIMInstantiateCallback (dpyinfo->display, dpyinfo->xrdb, resource_name, EMACS_CLASS, xim_instantiate_callback, - (XPointer)xim_inst); + /* Fixme: This is XPointer in + XFree86 but (XPointer *) on + Tru64, at least. */ + (XPointer) xim_inst); #else /* not HAVE_X11R6_XIM */ dpyinfo->xim = NULL; xim_open_dpy (dpyinfo, resource_name); @@ -11219,7 +11222,7 @@ x_calc_absolute_position (f) { Window newroot, newparent = 0xdeadbeef; Window *newchildren; - int nchildren; + unsigned int nchildren; if (! XQueryTree (FRAME_X_DISPLAY (f), this_window, &newroot, &newparent, &newchildren, &nchildren)) -- 2.39.2