aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1998-08-26 20:29:59 +0000
committerKarl Heuer1998-08-26 20:29:59 +0000
commit7c3c78a3c83f5b0c6ec3ccbfa474e486c835ec81 (patch)
treed93cfd3c4cf039ad9a4713995a5451e6cf9a9fb0 /src
parent10f118f0ef3b0a5071002ac4ddfdb914d4b07c9c (diff)
downloademacs-7c3c78a3c83f5b0c6ec3ccbfa474e486c835ec81.tar.gz
emacs-7c3c78a3c83f5b0c6ec3ccbfa474e486c835ec81.zip
(x_calc_absolute_position): Cast argument to XFree, in
case it was prototyped the old way.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 0e4072eba6f..aedac4714db 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5475,7 +5475,7 @@ x_calc_absolute_position (f)
5475 &newparent, &newchildren, &nchildren)) 5475 &newparent, &newchildren, &nchildren))
5476 break; 5476 break;
5477 5477
5478 XFree (newchildren); 5478 XFree ((char *) newchildren);
5479 5479
5480 f->output_data.x->parent_desc = newparent; 5480 f->output_data.x->parent_desc = newparent;
5481 } 5481 }