summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanu Kaskinen <tanu.kaskinen@linux.intel.com>2013-06-27 19:19:14 +0300
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2013-07-15 17:09:07 +0300
commitb76b9c32d9172a88efad7cb74c3a5c8cf893014a (patch)
tree940bc54a60ab023269099e9750786d9b76e2dc4b
parentb5e1c06a5edd24db9ef905ecfb2849630b6527af (diff)
downloadpulseaudio-b76b9c32d9172a88efad7cb74c3a5c8cf893014a.tar.gz
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.
-rw-r--r--src/modules/alsa/alsa-ucm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/alsa/alsa-ucm.c b/src/modules/alsa/alsa-ucm.c
index be3ac74dc..9205cdf77 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);
}