From c3ac16cfebde54c32b6d900743b413d460523dfb Mon Sep 17 00:00:00 2001 From: Johan Klokkhammer Helsing Date: Wed, 4 Nov 2015 02:31:17 +0100 Subject: Solve warnings. --- src/nvim/search.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/nvim/search.c') 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; -- cgit