Skip to content

Commit 5f55fe3

Browse files
authored
Merge pull request #28 from copercini/master
Fix missing semicolons
2 parents 232a173 + 0ef4449 commit 5f55fe3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp_utils/BLEAdvertising.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ void BLEAdvertising::start() {
122122
ESP_LOGE(LOG_TAG, "<< esp_ble_gap_start_advertising: rc=%d %s", errRc, GeneralUtils::errorToString(errRc));
123123
return;
124124
}
125-
ESP_LOGD(LOG_TAG, "<< start")
125+
ESP_LOGD(LOG_TAG, "<< start");
126126
} // start
127127

128128

cpp_utils/BLEUtils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ void BLEUtils::dumpGapEvent(
636636
} // ESP_GAP_BLE_SCAN_STOP_COMPLETE_EVT
637637

638638
default: {
639-
ESP_LOGD(LOG_TAG, "*** dumpGapEvent: Logger not coded ***")
639+
ESP_LOGD(LOG_TAG, "*** dumpGapEvent: Logger not coded ***");
640640
break;
641641
} // default
642642
} // switch

0 commit comments

Comments
 (0)