diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-01-22 10:06:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-01-22 10:06:48 +0000 |
commit | e9e3b57915c3e6ca6a156129e9bbc0f90d65a4bb (patch) | |
tree | 5b8bddc6015f419dfc0bddf8a986d8500e1dbd38 /src/gui_motif.c | |
parent | 91a4e82243198d3c54b51296c532005daf5ccd3b (diff) | |
download | vim-git-e9e3b57915c3e6ca6a156129e9bbc0f90d65a4bb.tar.gz |
updated for version 7.1-237v7.1.237
Diffstat (limited to 'src/gui_motif.c')
-rw-r--r-- | src/gui_motif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_motif.c b/src/gui_motif.c index 87a8e424d..6060b585c 100644 --- a/src/gui_motif.c +++ b/src/gui_motif.c @@ -3813,7 +3813,7 @@ find_replace_dialog_create(arg, do_replace) XtAddCallback(frdp->find, XmNactivateCallback, find_replace_callback, - (XtPointer) (do_replace ? FRD_R_FINDNEXT : FRD_FINDNEXT)); + (do_replace ? (XtPointer)FRD_R_FINDNEXT : (XtPointer)FRD_FINDNEXT)); if (do_replace) { |