Skip to content

Commit 6300908

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 1a240e4 commit 6300908

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cores/esp32/esp32-hal-i2c-ng.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static bool i2cDetachBus(void *bus_i2c_num) {
5656
return true;
5757
}
5858

59-
void * i2cBusHandle(uint8_t i2c_num) {
59+
void *i2cBusHandle(uint8_t i2c_num) {
6060
if (i2c_num >= SOC_I2C_NUM) {
6161
return NULL;
6262
}

cores/esp32/esp32-hal-i2c.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ esp_err_t i2cWriteReadNonStop(
4141
bool i2cIsInit(uint8_t i2c_num);
4242

4343
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 4, 0)
44-
void * i2cBusHandle(uint8_t i2c_num);
44+
void *i2cBusHandle(uint8_t i2c_num);
4545
#endif
4646

4747
#ifdef __cplusplus

0 commit comments

Comments
 (0)