From 79b5a629eb3fcabbca4b3f215e341823ff3099bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eliseo=20Marti=CC=81nez?= Date: Wed, 14 Jan 2015 12:13:13 +0100 Subject: [PATCH] Remove long_u: ops.c: Refactor long_u. --- src/nvim/ops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nvim/ops.c b/src/nvim/ops.c index 8fb3ba7f08..90fc89ee21 100644 --- a/src/nvim/ops.c +++ b/src/nvim/ops.c @@ -4234,8 +4234,7 @@ int do_addsub(int command, linenr_T Prenum1) char_u buf2[NUMBUFLEN]; int hex; /* 'X' or 'x': hex; '0': octal */ static int hexupper = FALSE; /* 0xABC */ - unsigned long n; - long_u oldn; + unsigned long n, oldn; char_u *ptr; int c; int length = 0; /* character length of the number */