Remove wrong error code from appctrl_error_to_string()
authorDongsun Lee <ds73.lee@samsung.com>
Wed, 15 Nov 2023 05:05:35 +0000 (14:05 +0900)
committer이동선/Security Assurance Lab(SR)/삼성전자 <ds73.lee@samsung.com>
Wed, 15 Nov 2023 07:02:31 +0000 (16:02 +0900)
tests/ble_test.cpp

index f14989b..3df04c5 100644 (file)
@@ -89,7 +89,6 @@ const char * appctrl_error_to_string(int error) {
         CODE_TO_STRING(APP_CONTROL_ERROR_LAUNCH_FAILED);
         CODE_TO_STRING(APP_CONTROL_ERROR_TIMED_OUT);
         CODE_TO_STRING(APP_CONTROL_ERROR_IO_ERROR);
-        CODE_TO_STRING(BT_ERROR_MAX_CONNECTION);
         default: return "Error not defined";
     }
 }