From: Karl Heuer Date: Tue, 13 Feb 1996 18:24:25 +0000 (+0000) Subject: (x_real_positions): Cast arg of XFree. X-Git-Tag: emacs-19.34~1297 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=72dc3bc7e7ea1479ee1e76fec17b681071ca22ac;p=emacs.git (x_real_positions): Cast arg of XFree. --- diff --git a/src/xfns.c b/src/xfns.c index 32270bc47e1..b958c136f50 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -956,7 +956,7 @@ x_real_positions (f, xptr, yptr) XQueryTree (FRAME_X_DISPLAY (f), outer, &tmp_root_window, &f->output_data.x->parent_desc, &tmp_children, &tmp_nchildren); - XFree (tmp_children); + XFree ((char *) tmp_children); win_x = win_y = 0;