Commit b803dd3a authored by Rafaël Carré's avatar Rafaël Carré

cast to (char*)

parent 9b967223
...@@ -42,7 +42,7 @@ module_t *vlc_module_create (vlc_object_t *obj) ...@@ -42,7 +42,7 @@ module_t *vlc_module_create (vlc_object_t *obj)
module->b_reentrant = module->b_unloadable = VLC_TRUE; module->b_reentrant = module->b_unloadable = VLC_TRUE;
module->psz_object_name = module->psz_longname = default_name; module->psz_object_name = module->psz_longname = default_name;
module->psz_capability = ""; module->psz_capability = (char*)"";
module->i_score = 1; module->i_score = 1;
module->i_config_items = module->i_bool_items = 0; module->i_config_items = module->i_bool_items = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment