diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2015-02-12 13:49:02 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-02-18 20:54:13 -0500 |
commit | 7dd48d7af08613255bc95b63f5b6b0f096a98d22 (patch) | |
tree | fb85ab05a011eb6bc23b771569e152410d966811 /src/nvim/pos.h | |
parent | 690e43b461491507094da8eeb48a92cf2f38b282 (diff) | |
download | rneovim-7dd48d7af08613255bc95b63f5b6b0f096a98d22.tar.gz rneovim-7dd48d7af08613255bc95b63f5b6b0f096a98d22.tar.bz2 rneovim-7dd48d7af08613255bc95b63f5b6b0f096a98d22.zip |
Enable -Wconversion: mark.c.
Refactoring summary:
- MB_STRNICMP: Inlined.
- MB_STRNCMP: Inlined.
Diffstat (limited to 'src/nvim/pos.h')
-rw-r--r-- | src/nvim/pos.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/pos.h b/src/nvim/pos.h index 7cfb52b283..7071df51e8 100644 --- a/src/nvim/pos.h +++ b/src/nvim/pos.h @@ -4,8 +4,8 @@ typedef long linenr_T; // line number type typedef int colnr_T; // column number type -#define MAXLNUM (0x7fffffffL) // maximum (invalid) line number -#define MAXCOL (0x7fffffffL) // maximum column number, 31 bits +#define MAXLNUM 0x7fffffff // maximum (invalid) line number +#define MAXCOL 0x7fffffff // maximum column number, 31 bits /* * position in file or buffer |