comparison src/ops.c @ 8989:e600e696c0a1 v7.4.1780

commit https://github.com/vim/vim/commit/dc633cf82758f67f656cda7fa8ccc30414ee53f8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 23 14:33:19 2016 +0200 patch 7.4.1780 Problem: Warnings reported by cppcheck. Solution: Fix the warnings. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Apr 2016 14:45:05 +0200
parents e1b84109506a
children b0b2bd8e5217
comparison
equal deleted inserted replaced
8988:c9dcf5ed0b1a 8989:e600e696c0a1
5707 */ 5707 */
5708 buf1 = alloc((unsigned)length + NUMBUFLEN); 5708 buf1 = alloc((unsigned)length + NUMBUFLEN);
5709 if (buf1 == NULL) 5709 if (buf1 == NULL)
5710 goto theend; 5710 goto theend;
5711 ptr = buf1; 5711 ptr = buf1;
5712 if (negative && (!visual || (visual && was_positive))) 5712 if (negative && (!visual || was_positive))
5713 { 5713 {
5714 *ptr++ = '-'; 5714 *ptr++ = '-';
5715 } 5715 }
5716 if (pre) 5716 if (pre)
5717 { 5717 {