diff options
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r-- | src/nvim/ops.c | 3 |
1 files changed, 1 insertions, 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 */ |