commit | 6b5ef067a548f1995dfb09190eca5a3560c2dad6 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Oct 27 12:18:00 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Oct 27 12:18:00 2010 +0200 |
tree | 9472a2b3bf60d07fe0d31ad5244ba1fc4afc944d | |
parent | 786989ba370724dd61bb8157769f26d988c6eaed [diff] [blame] |
updated for version 7.3.037 Problem: Compiler warnings for loss of data. (Mike Williams) Solution: Add type casts.
diff --git a/src/getchar.c b/src/getchar.c index 0569372..fb28160 100644 --- a/src/getchar.c +++ b/src/getchar.c
@@ -3922,7 +3922,7 @@ if (mapchars != NULL) { msg_puts(mapchars); - len = STRLEN(mapchars); + len = (int)STRLEN(mapchars); vim_free(mapchars); }