diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 21:53:33 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 21:53:33 +0000 |
commit | c4c4798dea683c580397e7c979b128920653eb24 (patch) | |
tree | 4acee8fc64b71d101d1307f52d198130459a3f55 /setup.cpp | |
parent | 5a7b14e209e125260c0a3263bcf7477e7f700026 (diff) | |
download | vdr-plugin-live-c4c4798dea683c580397e7c979b128920653eb24.tar.gz vdr-plugin-live-c4c4798dea683c580397e7c979b128920653eb24.tar.bz2 |
- LastChannel value of "0" now returns as maximum possible channel number
Diffstat (limited to 'setup.cpp')
-rw-r--r-- | setup.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -4,7 +4,6 @@ #include <algorithm> #include <functional> #include <iostream> -#include <numeric> #include <sstream> #include <getopt.h> #include <stdint.h> @@ -66,7 +65,6 @@ char const* Setup::CommandLineHelp() const bool Setup::ParseSetupEntry( char const* name, char const* value ) { - cout << "Parsing " << name << " = " << value << endl; if ( strcmp( name, "LastChannel" ) == 0 ) m_lastChannel = atoi( value ); else return false; return true; |