[pulseaudio-commits] src/modules

Tanu Kaskinen tanuk at kemper.freedesktop.org
Mon Jul 15 07:09:27 PDT 2013


 src/modules/alsa/alsa-ucm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b76b9c32d9172a88efad7cb74c3a5c8cf893014a
Author: Tanu Kaskinen <tanu.kaskinen at linux.intel.com>
Date:   Thu Jun 27 19:19:14 2013 +0300

    ucm: Fix an incorrect log message
    
    The log message didn't match the code, so one of them was wrong. It's
    entirely possible that the code is wrong, but I didn't have the
    motivation to study the code enough to understand what the code is
    supposed to do.

diff --git a/src/modules/alsa/alsa-ucm.c b/src/modules/alsa/alsa-ucm.c
index be3ac74..9205cdf 100644
--- a/src/modules/alsa/alsa-ucm.c
+++ b/src/modules/alsa/alsa-ucm.c
@@ -714,7 +714,7 @@ static void ucm_add_port_combination(
     pa_log_debug("Port %s direction %s, priority %d", port->name, direction, priority);
 
     if (cp) {
-        pa_log_debug("Adding port %s to profile %s", port->name, cp->name);
+        pa_log_debug("Adding profile %s to port %s.", cp->name, port->name);
         pa_hashmap_put(port->profiles, cp->name, cp);
     }
 



More information about the pulseaudio-commits mailing list