mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-02 18:31:22 +02:00
cam_menu.cpp: fix possible build error
used char instead int
This commit is contained in:
@@ -630,7 +630,7 @@ bool CCAMMenuHandler::changeNotify(const neutrino_locale_t OptionName, void * Da
|
||||
else
|
||||
#endif
|
||||
if (ARE_LOCALES_EQUAL(OptionName, LOCALE_CI_CLOCK)) {
|
||||
printf("CCAMMenuHandler::changeNotify: ci_clock[%s] %d\n", CISlot, g_settings.ci_clock[CISlot]);
|
||||
printf("CCAMMenuHandler::changeNotify: ci_clock[%d] %d\n", CISlot, g_settings.ci_clock[CISlot]);
|
||||
ca->SetTSClock(g_settings.ci_clock[CISlot] * 1000000);
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user