mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
ci(windows): treat compiler warnings as errors
Reduce the warning level from 3 to 1 and fix all warnings.
This commit is contained in:
@@ -585,7 +585,7 @@ static bool nlua_init_packages(lua_State *lstate)
|
||||
lua_getglobal(lstate, "require");
|
||||
lua_pushstring(lstate, "vim._init_packages");
|
||||
if (nlua_pcall(lstate, 1, 0)) {
|
||||
mch_errmsg(lua_tostring(lstate, -1));
|
||||
mch_errmsg((char *)lua_tostring(lstate, -1));
|
||||
mch_errmsg("\n");
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user