[pulseaudio-commits] Branch 'next' - 3 commits - src/modules src/utils

Tanu Kaskinen tanuk at kemper.freedesktop.org
Wed May 22 05:00:07 PDT 2013


 src/modules/module-intended-roles.c |    2 +-
 src/modules/module-rescue-streams.c |    2 +-
 src/utils/pactl.c                   |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 119b509c8bcb660f64a1aa5919b5c55e8e116b89
Author: Peter Meerwald <p.meerwald at bct-electronic.com>
Date:   Wed May 15 09:57:56 2013 +0200

    rescue-streams: Fix wording of module description
    
    Signed-off-by: Peter Meerwald <p.meerwald at bct-electronic.com>

diff --git a/src/modules/module-rescue-streams.c b/src/modules/module-rescue-streams.c
index 8b35809..f3e7424 100644
--- a/src/modules/module-rescue-streams.c
+++ b/src/modules/module-rescue-streams.c
@@ -36,7 +36,7 @@
 #include "module-rescue-streams-symdef.h"
 
 PA_MODULE_AUTHOR("Lennart Poettering");
-PA_MODULE_DESCRIPTION("When a sink/source is removed, try to move their streams to the default sink/source");
+PA_MODULE_DESCRIPTION("When a sink/source is removed, try to move its streams to the default sink/source");
 PA_MODULE_VERSION(PACKAGE_VERSION);
 PA_MODULE_LOAD_ONCE(TRUE);
 

commit af27da5f673ecfda10d48f569cfca73eef04cb3d
Author: Peter Meerwald <p.meerwald at bct-electronic.com>
Date:   Wed May 15 09:53:30 2013 +0200

    intended-roles: Fix typo in module description
    
    Signed-off-by: Peter Meerwald <p.meerwald at bct-electronic.com>

diff --git a/src/modules/module-intended-roles.c b/src/modules/module-intended-roles.c
index d1e9b81..5fa0355 100644
--- a/src/modules/module-intended-roles.c
+++ b/src/modules/module-intended-roles.c
@@ -36,7 +36,7 @@
 #include "module-intended-roles-symdef.h"
 
 PA_MODULE_AUTHOR("Lennart Poettering");
-PA_MODULE_DESCRIPTION("Automatically set device of streams based of intended roles of devices");
+PA_MODULE_DESCRIPTION("Automatically set device of streams based on intended roles of devices");
 PA_MODULE_VERSION(PACKAGE_VERSION);
 PA_MODULE_LOAD_ONCE(TRUE);
 PA_MODULE_USAGE(

commit 37888c0ebb8b6412636443243c9e3a1468e387a9
Author: Peter Meerwald <p.meerwald at bct-electronic.com>
Date:   Wed May 15 09:39:26 2013 +0200

    pactl: Use colon to separate priority in profiles output
    
    for example:
      Profiles:
    	input:analog-stereo: Analog Stereo Input (sinks: 0, sources: 1, priority. 60)
    	output:analog-stereo: Analog Stereo Output (sinks: 1, sources: 0, priority. 6000)
    
    it should be "priority: xxx", not "priority. xxx"
    
    Signed-off-by: Peter Meerwald <p.meerwald at bct-electronic.com>

diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index 3b6770f..8e6ec76 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -588,7 +588,7 @@ static void get_card_info_callback(pa_context *c, const pa_card_info *i, int is_
 
         printf(_("\tProfiles:\n"));
         for (p = i->profiles; p->name; p++)
-            printf("\t\t%s: %s (sinks: %u, sources: %u, priority. %u)\n", p->name, p->description, p->n_sinks, p->n_sources, p->priority);
+            printf("\t\t%s: %s (sinks: %u, sources: %u, priority: %u)\n", p->name, p->description, p->n_sinks, p->n_sources, p->priority);
     }
 
     if (i->active_profile)



More information about the pulseaudio-commits mailing list