mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-29 16:31:05 +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) {
|
} else if (event.status & FE_TIMEDOUT) {
|
||||||
if(timedout < timer_msec)
|
if(timedout < timer_msec)
|
||||||
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;*/
|
/*break;*/
|
||||||
} else {
|
} else {
|
||||||
if (event.status & FE_HAS_SIGNAL)
|
if (event.status & FE_HAS_SIGNAL)
|
||||||
|
@@ -653,7 +653,7 @@ int main (int argc, char** argv)
|
|||||||
std::vector<CZapitClient::responseGetBouquetChannels>::const_iterator ch_resp;
|
std::vector<CZapitClient::responseGetBouquetChannels>::const_iterator ch_resp;
|
||||||
for (ch_resp = channels.begin(), channel = 1; ch_resp != channels.end(); ch_resp++, ++channel)
|
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;
|
//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;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user