[vlc-commits] Alsa: remove an unneeded space in msg_Dbg

Jean-Baptiste Kempf git at videolan.org
Mon Apr 25 04:07:54 CEST 2011


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Apr 25 00:42:49 2011 +0200| [3a78a00ce8a4a9e11bb6e8314f5ee420f52b0119] | committer: Jean-Baptiste Kempf

Alsa: remove an unneeded space in msg_Dbg

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3a78a00ce8a4a9e11bb6e8314f5ee420f52b0119
---

 modules/audio_output/alsa.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/audio_output/alsa.c b/modules/audio_output/alsa.c
index 5ec9c54..1fdaf14 100644
--- a/modules/audio_output/alsa.c
+++ b/modules/audio_output/alsa.c
@@ -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)
         {



More information about the vlc-commits mailing list