summaryrefslogtreecommitdiffstats
path: root/src/integration.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-25 15:25:03 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-25 15:25:03 +0100
commit669cac0a805333e69b9e1176425083914eada659 (patch)
tree817a206b6ba8e62a6b17637a9ba6152d74469099 /src/integration.c
parentf391327adbbffb11180cf6038a92af1ed144e907 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/integration.c b/src/integration.c
index 5879a0b229..87380c8e1d 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;
}