commit | 2321c9255e2330439e821d77fe828e5ce8c9d499 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Fri May 14 15:42:53 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Fri May 14 15:42:53 2010 +0200 |
tree | a3b1ce269060c273df1c0b6b1a01bb529c10ec48 | |
parent | e6850798483afb3a54adf26bdd25c625d70e98d8 [diff] [blame] |
updated for version 7.2.425 Problem: Some compilers complain about fourth EX() argument. Solution: Add cast to long_u.
diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 6720cdf..a5a9e12 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h
@@ -74,7 +74,7 @@ # undef EX /* just in case */ #endif #ifdef DO_DECLARE_EXCMD -# define EX(a, b, c, d) {(char_u *)b, c, d} +# define EX(a, b, c, d) {(char_u *)b, c, (long_u)(d)} typedef void (*ex_func_T) __ARGS((exarg_T *eap));