diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-02-27 16:13:11 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-28 08:49:34 -0300 |
commit | 6eece5895e4f0c147ef21ebb4d170a54f8694182 (patch) | |
tree | 681674aa2f61f6044ab750e30ba41e7895005e1b /src/regexp.c | |
parent | ef6933bd609e4f353f54fef8897cda217b295e34 (diff) | |
download | rneovim-6eece5895e4f0c147ef21ebb4d170a54f8694182.tar.gz rneovim-6eece5895e4f0c147ef21ebb4d170a54f8694182.tar.bz2 rneovim-6eece5895e4f0c147ef21ebb4d170a54f8694182.zip |
Fix a 'garbage value' warning found by Clang's static analyzer
- Initialize lists in paragraph_start()
- Remove two dead stores
Diffstat (limited to 'src/regexp.c')
-rw-r--r-- | src/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } /* |