diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-10-11 10:06:20 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-10-11 10:06:20 +0000 |
commit | 7171abea1ad8d33cce89a9664873417187139a53 (patch) | |
tree | 491426309f8e38304d96b55b7ac5ab6bdaefcc6b /src/if_xcmdsrv.c | |
parent | 349b2f643a5e840facf42942d37d47c5b37c1292 (diff) | |
download | vim-git-7171abea1ad8d33cce89a9664873417187139a53.tar.gz |
updated for version 7.0018
Diffstat (limited to 'src/if_xcmdsrv.c')
-rw-r--r-- | src/if_xcmdsrv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/if_xcmdsrv.c b/src/if_xcmdsrv.c index fb5999a54..fe127a46e 100644 --- a/src/if_xcmdsrv.c +++ b/src/if_xcmdsrv.c @@ -1021,7 +1021,7 @@ DeleteAnyLingerer(dpy, win) char_u *regProp, *entry = NULL; char_u *p; long_u numItems; - Window wwin; + int_u wwin; /* * Read the registry property. @@ -1034,8 +1034,8 @@ DeleteAnyLingerer(dpy, win) { if (*p != 0) { - sscanf((char *)p, "%x", (int_u *)&wwin); - if (wwin == win) + sscanf((char *)p, "%x", &wwin); + if ((Window)wwin == win) { int lastHalf; |