Commit ca44ef6f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Do not log through modules (they are not tied to any libvlc)

parent 5c4ceb84
......@@ -141,7 +141,7 @@ int vlc_module_set (module_t *module, int propid, ...)
break;
case VLC_MODULE_PROGRAM:
msg_Warn (module, "deprecated module property %d", propid);
fprintf (stderr, "deprecated module property %d", propid);
break;
case VLC_MODULE_CB_OPEN:
......@@ -195,8 +195,8 @@ int vlc_module_set (module_t *module, int propid, ...)
}
default:
msg_Err (module, "unknown module property %d", propid);
msg_Err (module, "LibVLC might be too old to use this module.");
fprintf (stderr, "LibVLC: unknown module property %d", propid);
fprintf (stderr, "LibVLC: too old to use this module?");
ret = VLC_EGENERIC;
break;
}
......
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