From 036ef3399a34bdc3a3538675990e4c7006f3940b Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Tue, 30 Jul 2013 15:24:51 +0400 Subject: [PATCH] gui/infoviewer.cpp: fix shadow --- src/gui/infoviewer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/infoviewer.cpp b/src/gui/infoviewer.cpp index c75885d16..26894555d 100644 --- a/src/gui/infoviewer.cpp +++ b/src/gui/infoviewer.cpp @@ -1367,11 +1367,11 @@ int CInfoViewer::handleMsg (const neutrino_msg_t msg, neutrino_msg_data_t data) return messages_return::unhandled; } -void CInfoViewer::sendNoEpg(const t_channel_id channel_id) +void CInfoViewer::sendNoEpg(const t_channel_id for_channel_id) { if (!virtual_zap_mode) { char *p = new char[sizeof(t_channel_id)]; - memcpy(p, &channel_id, sizeof(t_channel_id)); + memcpy(p, &for_channel_id, sizeof(t_channel_id)); g_RCInput->postMsg (NeutrinoMessages::EVT_NOEPG_YET, (const neutrino_msg_data_t) p, false); } }