Commit 3a78a00c authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Alsa: remove an unneeded space in msg_Dbg

parent 17f0388b
......@@ -784,7 +784,7 @@ static void GetDevices (vlc_object_t *obj, module_config_t *item)
if (desc != NULL)
for (char *lf = strchr(desc, '\n'); lf; lf = strchr(lf, '\n'))
*lf = ' ';
msg_Dbg(obj, " %s (%s)", (desc != NULL) ? desc : name, name);
msg_Dbg(obj, "%s (%s)", (desc != NULL) ? desc : name, name);
if (item != NULL)
{
......
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