mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-27 15:32:52 +02:00
hdmi_cec: avoid compiler warnings
Origin commit data
------------------
Branch: ni/coolstream
Commit: 83ff276d6b
Author: vanhofen <vanhofen@gmx.de>
Date: 2022-11-19 (Sat, 19 Nov 2022)
Origin message was:
------------------
- hdmi_cec: avoid compiler warnings
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -165,6 +165,8 @@ void hdmi_cec::ReportPhysicalAddress()
|
||||
|
||||
void hdmi_cec::SendCECMessage(struct cec_message &txmessage, int sleeptime)
|
||||
{
|
||||
(void) sleeptime; // avoid compiler warning
|
||||
|
||||
char str[txmessage.length * 6];
|
||||
|
||||
for (int i = 0; i < txmessage.length; i++)
|
||||
@@ -548,9 +550,9 @@ void hdmi_cec::run()
|
||||
static unsigned char pressedkey = 0;
|
||||
char str[rxmessage.length * 6];
|
||||
|
||||
for (int i = 0; i < rxmessage.length; i++)
|
||||
for (int j = 0; j < rxmessage.length; j++)
|
||||
{
|
||||
sprintf(str + (i * 6), "[0x%02X]", rxmessage.data[i]);
|
||||
sprintf(str + (j * 6), "[0x%02X]", rxmessage.data[j]);
|
||||
}
|
||||
|
||||
dprintf(DEBUG_NORMAL, GREEN" [CEC] received message %s to %s (0x%02X>>0x%02X) '%s' (%s)\n" NORMAL, ToString((cec_logical_address)rxmessage.initiator), rxmessage.destination == 0xf ? "all" : ToString((cec_logical_address)rxmessage.destination), rxmessage.initiator, rxmessage.destination, ToString((cec_opcode)rxmessage.opcode), str);
|
||||
|
Reference in New Issue
Block a user