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

Avoid NULL for %s

(cherry picked from commit 2e02b35f4ee4aa36bd659fc898c31abc1cf31891)
parent bd0571c5
......@@ -1158,7 +1158,7 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
if( intf_Create( p_libvlc, psz_module ? psz_module : "$intf" ) )
{
msg_Err( p_libvlc, "interface \"%s\" initialization failed",
psz_module );
psz_module ? psz_module : "default" );
return VLC_EGENERIC;
}
return VLC_SUCCESS;
......
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