diff options
Diffstat (limited to 'src/nvim/mapping.c')
-rw-r--r-- | src/nvim/mapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mapping.c b/src/nvim/mapping.c index d29a2c8e43..ca0349d1f6 100644 --- a/src/nvim/mapping.c +++ b/src/nvim/mapping.c @@ -1901,7 +1901,7 @@ int makemap(FILE *fd, buf_T *buf) // "what": 0 for :map lhs, 1 for :map rhs, 2 for :set // // return FAIL for failure, OK otherwise -int put_escstr(FILE *fd, char *strstart, int what) +int put_escstr(FILE *fd, const char *strstart, int what) { uint8_t *str = (uint8_t *)strstart; |