Skip to content

Commit 7360076

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 129f8fe commit 7360076

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cores/esp32/esp32-hal-uart.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ int log_printfv(const char *format, va_list arg) {
11121112
return 0;
11131113
}
11141114
}
1115-
/*
1115+
/*
11161116
// This causes dead locks with logging in specific cases and also with C++ constructors that may send logs
11171117
#if !CONFIG_DISABLE_HAL_LOCKS
11181118
if(s_uart_debug_nr != -1 && _uart_bus_array[s_uart_debug_nr].lock){
@@ -1122,7 +1122,7 @@ int log_printfv(const char *format, va_list arg) {
11221122
*/
11231123
vsnprintf(temp, len + 1, format, arg);
11241124
ets_printf("%s", temp);
1125-
/*
1125+
/*
11261126
// This causes dead locks with logging and also with constructors that may send logs
11271127
#if !CONFIG_DISABLE_HAL_LOCKS
11281128
if(s_uart_debug_nr != -1 && _uart_bus_array[s_uart_debug_nr].lock){

0 commit comments

Comments
 (0)