summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-06-20 23:58:39 +0000
committerLennart Poettering <lennart@poettering.net>2006-06-20 23:58:39 +0000
commit08504c79cd5bf5518ccdaade925bc10e679be7bc (patch)
treefceeb961ccf84d85a31ef841993b25f430ebc29c
parent59eea19be2880f3cbc52c38e11ce84cd1f2dde16 (diff)
add --record to command line for pavumeter
git-svn-id: file:///home/lennart/svn/public/paman/trunk@77 cdefa82f-4ce1-0310-97f5-ab6066f37c3c
-rw-r--r--src/ServerInfoManager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ServerInfoManager.cc b/src/ServerInfoManager.cc
index 27c4602..122853e 100644
--- a/src/ServerInfoManager.cc
+++ b/src/ServerInfoManager.cc
@@ -786,7 +786,7 @@ void ServerInfoManager::playSample(uint32_t sample, uint32_t sink) {
void ServerInfoManager::runVolumeMeter(const Glib::ustring &source) {
char t[256];
- snprintf(t, sizeof(t), "%s %s", PAVUMETER_PATH, source.c_str());
+ snprintf(t, sizeof(t), "%s --record %s", PAVUMETER_PATH, source.c_str());
Glib::spawn_command_line_async(t);
}