diff options
author | Johan Klokkhammer Helsing <johanhelsing@gmail.com> | 2015-11-04 02:31:17 +0100 |
---|---|---|
committer | Johan Klokkhammer Helsing <johanhelsing@gmail.com> | 2015-12-13 13:06:48 +0100 |
commit | c3ac16cfebde54c32b6d900743b413d460523dfb (patch) | |
tree | 7bbf1931c6f28fd12a819f6b10a002d21c04e73a /src/nvim/search.c | |
parent | 3b472e55b327dc1c4fc034c665398e70d0f7dc77 (diff) | |
download | rneovim-c3ac16cfebde54c32b6d900743b413d460523dfb.tar.gz rneovim-c3ac16cfebde54c32b6d900743b413d460523dfb.tar.bz2 rneovim-c3ac16cfebde54c32b6d900743b413d460523dfb.zip |
Solve warnings.
Diffstat (limited to 'src/nvim/search.c')
-rw-r--r-- | src/nvim/search.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/nvim/search.c b/src/nvim/search.c index fa078dfcbf..7dd3a5d219 100644 --- a/src/nvim/search.c +++ b/src/nvim/search.c @@ -1444,13 +1444,9 @@ static int check_prevcol(char_u *linep, int col, int ch, int *prevcol) /* * Raw string start is found at linep[startpos.col - 1]. - * Return TRUE if the matching end can be found between startpos and endpos. + * Return true if the matching end can be found between startpos and endpos. */ - static int -find_rawstring_end(linep, startpos, endpos) - char_u *linep; - pos_T *startpos; - pos_T *endpos; +static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos) { char_u *p; char_u *delim_copy; |