X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcec-config%2Fcec-config.cpp;h=5dbb9c8de19f6226ff26c8ee646cde7e48915bc7;hb=ce37a9b17b1eee6488f6d3cdba534d5da71c3ea4;hp=d5f954eb7b5e2a4016ac55442fec033dde994c8c;hpb=3bafe3532bef1dd02331ccdfe735df8c8e427635;p=deb_libcec.git diff --git a/src/cec-config/cec-config.cpp b/src/cec-config/cec-config.cpp index d5f954e..5dbb9c8 100644 --- a/src/cec-config/cec-config.cpp +++ b/src/cec-config/cec-config.cpp @@ -144,7 +144,6 @@ void EnableCallbacks(ICECAdapter *adapter) g_callbacks.CBCecLogMessage = &CecLogMessage; g_callbacks.CBCecKeyPress = &CecKeyPress; g_callbacks.CBCecCommand = &CecCommand; - g_callbacks.CBCecConfigurationChanged = NULL; adapter->EnableCallbacks(NULL, &g_callbacks); } @@ -235,11 +234,8 @@ int8_t FindPhysicalAddressPortNumber(void) if (input.empty()) return -1; - int8_t hdmiport = atoi(input.c_str()); - if (hdmiport < 1 || hdmiport > 15) - return -1; - - return hdmiport; + int hdmiport = atoi(input.c_str()); + return (hdmiport < 1 || hdmiport > 15) ? -1 : (int8_t)hdmiport; } cec_logical_address FindPhysicalAddressBaseDevice(void)