diff src/getchar.c @ 2615:c6fe65c000d2 v7.3.037

updated for version 7.3.037 Problem: Compiler warnings for loss of data. (Mike Williams) Solution: Add type casts.
author Bram Moolenaar <bram@vim.org>
date Wed, 27 Oct 2010 12:18:00 +0200
parents 5b154df6fcd8
children bc3f88ca060d
line wrap: on
line diff
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -3922,7 +3922,7 @@ showmap(mp, local)
     if (mapchars != NULL)
     {
 	msg_puts(mapchars);
-	len = STRLEN(mapchars);
+	len = (int)STRLEN(mapchars);
 	vim_free(mapchars);
     }