diff options
| author | Karl Heuer | 1996-02-13 18:24:25 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-02-13 18:24:25 +0000 |
| commit | 72dc3bc7e7ea1479ee1e76fec17b681071ca22ac (patch) | |
| tree | acbf3ac01da532aa9aa23d7f8f2ce73bc4aaab9d /src/xfns.c | |
| parent | 6014138c2342cb6cb158b6e75a5f6926e7c4f6fe (diff) | |
| download | emacs-72dc3bc7e7ea1479ee1e76fec17b681071ca22ac.tar.gz emacs-72dc3bc7e7ea1479ee1e76fec17b681071ca22ac.zip | |
(x_real_positions): Cast arg of XFree.
Diffstat (limited to 'src/xfns.c')
| -rw-r--r-- | src/xfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 956 | XQueryTree (FRAME_X_DISPLAY (f), outer, &tmp_root_window, | 956 | XQueryTree (FRAME_X_DISPLAY (f), outer, &tmp_root_window, |
| 957 | &f->output_data.x->parent_desc, | 957 | &f->output_data.x->parent_desc, |
| 958 | &tmp_children, &tmp_nchildren); | 958 | &tmp_children, &tmp_nchildren); |
| 959 | XFree (tmp_children); | 959 | XFree ((char *) tmp_children); |
| 960 | 960 | ||
| 961 | win_x = win_y = 0; | 961 | win_x = win_y = 0; |
| 962 | 962 | ||