diff options
author | Florian Walch <florian@fwalch.com> | 2014-11-18 21:14:29 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2014-11-27 21:08:07 +0100 |
commit | 10b938bdb5d13e2bc1f4622774f0069f4cee11a6 (patch) | |
tree | df5cad254cdf75f2d517a0be1826e1159a11deed /src/nvim/search.c | |
parent | e3fca96e1849b6646c9c91b4dfebf690284e037b (diff) | |
download | rneovim-10b938bdb5d13e2bc1f4622774f0069f4cee11a6.tar.gz rneovim-10b938bdb5d13e2bc1f4622774f0069f4cee11a6.tar.bz2 rneovim-10b938bdb5d13e2bc1f4622774f0069f4cee11a6.zip |
Wconversion: Fix warnings in indent_c.c.
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index 78d9dcbccb..e9184d84cd 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -1430,7 +1430,7 @@ static int check_prevcol(char_u *linep, int col, int ch, int *prevcol) * NULL */ -pos_T *findmatchlimit(oparg_T *oap, int initc, int flags, int maxtravel) +pos_T *findmatchlimit(oparg_T *oap, int initc, int flags, int64_t maxtravel) { static pos_T pos; /* current search position */ int findc = 0; /* matching brace */ |