aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_cmds_defs.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2019-07-16 20:32:21 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2019-07-19 15:56:38 +0200
commit75928101f84526d92f3a38b175cdd71820526e49 (patch)
tree80518899ff7e55bc22454c5354e95fe7a7ed9852 /src/nvim/ex_cmds_defs.h
parenta46fe2e615bc5f4431cad04b67ac5ba0b67ed86c (diff)
downloadrneovim-75928101f84526d92f3a38b175cdd71820526e49.tar.gz
rneovim-75928101f84526d92f3a38b175cdd71820526e49.tar.bz2
rneovim-75928101f84526d92f3a38b175cdd71820526e49.zip
refactor: enable -Wconversion for ex_getln.c
Diffstat (limited to 'src/nvim/ex_cmds_defs.h')
-rw-r--r--src/nvim/ex_cmds_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds_defs.h b/src/nvim/ex_cmds_defs.h
index 6c36922c09..bc7e1e9b59 100644
--- a/src/nvim/ex_cmds_defs.h
+++ b/src/nvim/ex_cmds_defs.h
@@ -143,7 +143,7 @@ struct exarg {
struct expand {
int xp_context; // type of expansion
char_u *xp_pattern; // start of item to expand
- int xp_pattern_len; // bytes in xp_pattern before cursor
+ size_t xp_pattern_len; // bytes in xp_pattern before cursor
char_u *xp_arg; // completion function
int xp_scriptID; // SID for completion function
int xp_backslash; // one of the XP_BS_ values