diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 148c13822..8204abd49 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -2632,7 +2632,7 @@ int CNeutrinoApp::handleMsg(const neutrino_msg_t _msg, neutrino_msg_data_t data) if(msg == NeutrinoMessages::EVT_WEBTV_ZAP_COMPLETE) { t_channel_id chid = *(t_channel_id *) data; - printf("EVT_WEBTV_ZAP_COMPLETE: %llx\n", chid); + printf("EVT_WEBTV_ZAP_COMPLETE: %" PRIx64 "\n", chid); if (mode == mode_standby) { delete [] (unsigned char*) data; } else { @@ -3155,7 +3155,7 @@ int CNeutrinoApp::handleMsg(const neutrino_msg_t _msg, neutrino_msg_data_t data) return messages_return::handled; } else if( msg == NeutrinoMessages::CHANGEMODE ) { - printf("CNeutrinoApp::handleMsg: CHANGEMODE to %d rezap %d\n", data & mode_mask, (data & norezap) != norezap); + printf("CNeutrinoApp::handleMsg: CHANGEMODE to %d rezap %d\n", (int)(data & mode_mask), (data & norezap) != norezap); if((data & mode_mask)== mode_radio) { if( mode != mode_radio ) { radioMode((data & norezap) != norezap);