mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
frontend.cpp/pzapit.cpp: fix format string
Origin commit data
------------------
Branch: ni/coolstream
Commit: c92d4fad1a
Author: Thilo Graf <dbt@novatux.de>
Date: 2015-01-12 (Mon, 12 Jan 2015)
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -694,7 +694,7 @@ struct dvb_frontend_event CFrontend::getEvent(void)
|
||||
} else if (event.status & FE_TIMEDOUT) {
|
||||
if(timedout < timer_msec)
|
||||
timedout = timer_msec;
|
||||
printf("[fe%d] ############################## FE_TIMEDOUT (max %d)\n", fenumber, timedout);
|
||||
printf("[fe%d] ############################## FE_TIMEDOUT (max %u)\n", fenumber, timedout);
|
||||
/*break;*/
|
||||
} else {
|
||||
if (event.status & FE_HAS_SIGNAL)
|
||||
|
@@ -653,7 +653,7 @@ int main (int argc, char** argv)
|
||||
std::vector<CZapitClient::responseGetBouquetChannels>::const_iterator ch_resp;
|
||||
for (ch_resp = channels.begin(), channel = 1; ch_resp != channels.end(); ch_resp++, ++channel)
|
||||
//std::cout << channel << ": " << ch_resp->name << ": " << ch_resp->channel_id<< std::endl;
|
||||
printf("%3d: %s (%04x)\n", channel, ch_resp->name, (short) (ch_resp->channel_id &0xFFFF));
|
||||
printf("%3u: %s (%04x)\n", channel, ch_resp->name, (short) (ch_resp->channel_id &0xFFFF));
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user