From 6eece5895e4f0c147ef21ebb4d170a54f8694182 Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Carvalho Date: Thu, 27 Feb 2014 16:13:11 -0300 Subject: Fix a 'garbage value' warning found by Clang's static analyzer - Initialize lists in paragraph_start() - Remove two dead stores --- src/regexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/regexp.c') diff --git a/src/regexp.c b/src/regexp.c index c325a7d129..54fe5940a7 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -2520,7 +2520,7 @@ static void reginsert_nr(int op, long val, char_u *opnd) *place++ = op; *place++ = NUL; *place++ = NUL; - place = re_put_long(place, (long_u)val); + re_put_long(place, (long_u)val); } /* -- cgit