From 2c4278fc738cca3fcd70cffd7ddc865ea9783694 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 17 May 2009 11:33:22 +0000 Subject: updated for version 7.2-180 --- src/quickfix.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/quickfix.c') diff --git a/src/quickfix.c b/src/quickfix.c index e374694ad..3c0ed203b 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -2240,7 +2240,6 @@ ex_cwindow(eap) * ":cclose": close the window showing the list of errors. * ":lclose": close the window showing the location list */ -/*ARGSUSED*/ void ex_cclose(eap) exarg_T *eap; @@ -3211,7 +3210,7 @@ ex_vimgrep(eap) break; col = regmatch.endpos[0].col + (col == regmatch.endpos[0].col); - if (col > STRLEN(ml_get_buf(buf, lnum, FALSE))) + if (col > (colnr_T)STRLEN(ml_get_buf(buf, lnum, FALSE))) break; } line_breakcheck(); -- cgit v1.2.1