summaryrefslogtreecommitdiff
path: root/recmenus.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-06-16 15:26:23 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2019-06-17 14:36:03 +0200
commit0a931b97dcb8059b78ad7bebf57b7e80b5d63bc5 (patch)
tree43a51a83651601500af46ec1cc41d8632083cd0f /recmenus.c
parent3cce1d2ead33eec84176dc5e49857ff062f5752c (diff)
downloadvdr-plugin-tvguide-0a931b97dcb8059b78ad7bebf57b7e80b5d63bc5.tar.gz
vdr-plugin-tvguide-0a931b97dcb8059b78ad7bebf57b7e80b5d63bc5.tar.bz2
Cosmetic changes
Diffstat (limited to 'recmenus.c')
-rw-r--r--recmenus.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/recmenus.c b/recmenus.c
index b0b9f04..f828105 100644
--- a/recmenus.c
+++ b/recmenus.c
@@ -808,11 +808,10 @@ int cRecMenuSearchTimerEdit::SplitChannelGroups(std::vector<std::string> *channe
std::string a = *it;
splitstring s(a.c_str());
std::vector<std::string> value = s.split('|', 0);
- dsyslog ("%s %s %d %s\n", __FILE__, __func__, __LINE__, s.c_str());
std::vector<std::string>::iterator ito = value.begin();
channelgroups->push_back(*ito);
- std::string b = *ito;
- if (b.compare(channelGroup) == 0)
+ std::string b = *ito;
+ if (b.compare(channelGroup) == 0)
j = i;
i++;
}