fix for Wextra Wshadow Werror build

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@535 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
satbaby
2010-04-01 16:10:09 +00:00
parent aa52b78495
commit 6571f3dc02
4 changed files with 16 additions and 16 deletions

View File

@@ -992,7 +992,7 @@ bool CCpuFreqNotifier::changeNotify(const neutrino_locale_t, void * data)
return true;
}
bool CScreePresetNotifier::changeNotify(const neutrino_locale_t OptionName, void * data)
bool CScreePresetNotifier::changeNotify(const neutrino_locale_t /*OptionName*/, void * data)
{
int preset = * (int *) data;
printf("CScreePresetNotifier::changeNotify preset %d (setting %d)\n", preset, g_settings.screen_preset);
@@ -1005,7 +1005,7 @@ printf("CScreePresetNotifier::changeNotify preset %d (setting %d)\n", preset, g_
return true;
}
bool CAllUsalsNotifier::changeNotify(const neutrino_locale_t OptionName, void * data)
bool CAllUsalsNotifier::changeNotify(const neutrino_locale_t /*OptionName*/, void * data)
{
int onoff = * (int *) data;
printf("CAllUsalsNotifier::changeNotify: %s\n", onoff ? "ON" : "OFF");