mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0063: too many type casts for dict_get functions
Problem: Too many type casts for dict_get functions. Solution: Change the key argument from "char_u *" to "char *".
This commit is contained in:
@@ -695,9 +695,9 @@ f_getbufinfo(typval_T *argvars, typval_T *rettv)
|
||||
if (sel_d != NULL)
|
||||
{
|
||||
filtered = TRUE;
|
||||
sel_buflisted = dict_get_bool(sel_d, (char_u *)"buflisted", FALSE);
|
||||
sel_bufloaded = dict_get_bool(sel_d, (char_u *)"bufloaded", FALSE);
|
||||
sel_bufmodified = dict_get_bool(sel_d, (char_u *)"bufmodified",
|
||||
sel_buflisted = dict_get_bool(sel_d, "buflisted", FALSE);
|
||||
sel_bufloaded = dict_get_bool(sel_d, "bufloaded", FALSE);
|
||||
sel_bufmodified = dict_get_bool(sel_d, "bufmodified",
|
||||
FALSE);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user