Skip to content

Commit 4890915

Browse files
authored
Fix pre-commit
1 parent ffcb6ad commit 4890915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/io_expander/esp_io_expander/esp_io_expander_gpio_wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ esp_err_t esp_io_expander_gpio_wrapper_append_handler(esp_io_expander_handle_t h
7676
uint32_t end = start_io_num + cnt;
7777
// Pre-allocate node before taking the lock to minimize time spent in critical section
7878
ioexp_range_node_t *node = (ioexp_range_node_t *)heap_caps_malloc(sizeof(ioexp_range_node_t),
79-
MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
79+
MALLOC_CAP_INTERNAL | MALLOC_CAP_8BIT);
8080
if (node == NULL) {
8181
return ESP_ERR_NO_MEM;
8282
}

0 commit comments

Comments
 (0)