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

Avoid NULL for %s

parent 8ad6691b
......@@ -1176,7 +1176,7 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
if( p_intf == NULL )
{
msg_Err( p_libvlc, "interface \"%s\" initialization failed",
psz_module );
psz_module ? psz_module : "default" );
return VLC_EGENERIC;
}
......
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