This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/v4l-utils.git tree:

Subject: v4l2-ctl: fix --get-modulator output
Author:  Hans Verkuil <[email protected]>
Date:    Mon Jan 17 20:40:13 2011 +0100

Signed-off-by: Hans Verkuil <[email protected]>

 utils/v4l2-ctl/v4l2-ctl.cpp |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

---

http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=85615ede6930c404e199af07b08a01db21f11cbb

diff --git a/utils/v4l2-ctl/v4l2-ctl.cpp b/utils/v4l2-ctl/v4l2-ctl.cpp
index 0415d37..41551ee 100644
--- a/utils/v4l2-ctl/v4l2-ctl.cpp
+++ b/utils/v4l2-ctl/v4l2-ctl.cpp
@@ -1263,15 +1263,15 @@ static std::string txsubchans2s(int txsubchans)
        std::string s;
 
        if (txsubchans & V4L2_TUNER_SUB_MONO)
-               s += "mono";
+               s += "mono ";
        if (txsubchans & V4L2_TUNER_SUB_STEREO)
-               s += "stereo";
+               s += "stereo ";
        if (txsubchans & V4L2_TUNER_SUB_LANG1)
-               s += "bilingual";
+               s += "bilingual ";
        if (txsubchans & V4L2_TUNER_SUB_SAP)
-               s += "+sap";
+               s += "sap ";
        if (txsubchans & V4L2_TUNER_SUB_RDS)
-               s += "+rds";
+               s += "rds ";
        return s;
 }
 

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to