Commit 3bb2fbc5 authored by Ramiro Polla's avatar Ramiro Polla Committed by Rémi Denis-Courmont

Only print CPU capabilities if there are any.

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 5bac9731
......@@ -785,7 +785,8 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
p_capabilities[sizeof(p_capabilities) - 1] = '\0';
#endif
msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
if (p_capabilities[0])
msg_Dbg( p_libvlc, "CPU has capabilities %s", p_capabilities );
/*
* Choose the best memcpy module
......
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