diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-25 15:25:03 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-25 15:25:03 +0100 |
commit | 669cac0a805333e69b9e1176425083914eada659 (patch) | |
tree | 817a206b6ba8e62a6b17637a9ba6152d74469099 /src/integration.c | |
parent | f391327adbbffb11180cf6038a92af1ed144e907 (diff) | |
download | vim-git-669cac0a805333e69b9e1176425083914eada659.tar.gz |
patch 7.4.1416v7.4.1416
Problem: Using "u_char" intead of "char_u", which doesn't work everywhere.
(Jörg Plate)
Solution: Use "char_u" always.
Diffstat (limited to 'src/integration.c')
-rw-r--r-- | src/integration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integration.c b/src/integration.c index 5879a0b22..87380c8e1 100644 --- a/src/integration.c +++ b/src/integration.c @@ -805,7 +805,7 @@ widgetIsIconified( if (XtWindow(w) != 0) { /* only check if window exists! */ XGetWindowProperty(XtDisplay(w), XtWindow(w), wm_state, 0L, 2L, False, AnyPropertyType, &act_type, &act_fmt, &nitems_ret, - &bytes_after, (u_char **) &property); + &bytes_after, (char_u **) &property); if (nitems_ret == 2 && property[0] == IconicState) { return True; } |