Fix compiler warning.
diff --git a/src/memline.c b/src/memline.c
index c5b22e0..06b30cf 100644
--- a/src/memline.c
+++ b/src/memline.c
@@ -4923,7 +4923,7 @@
 	/* Using blowfish, add salt and seed. We use the byte offset of the
 	 * block for the salt. */
 	vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
-	bf_key_init(key, salt, STRLEN(salt));
+	bf_key_init(key, salt, (int)STRLEN(salt));
 	bf_ofb_init(seed, MF_SEED_LEN);
     }
 }