Bram,
appveyor shows a warning when building Vim using MSVC:
https://ci.appveyor.com/project/chrisbra/vim-win32-installer-33v6e/build/79/job/39g3qqoc1gg4e1ob#L334
message.c(307) : warning C4267: '=' : conversion from 'size_t' to 'int',
possible loss of data
Here is a patch:
diff --git a/src/message.c b/src/message.c
index fe68b5b..b4d7b65 100644
--- a/src/message.c
+++ b/src/message.c
@@ -304,7 +304,7 @@ trunc_string(
if (len + n > room || half == 0)
break;
len += n;
- i = half;
+ i = (int)half;
}
}
else
Best,
Christian
--
Früher schauten die Schriftsteller durch das Fenster in den Salon,
jetzt schauen sie durch das Schlüsselloch in das Schlafzimmer.
-- John Ernst Steinbeck
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.