Skip to content

Commit 64a56c9

Browse files
committed
Revert "Fix CI warnings."
This reverts commit 669b9ce.
1 parent e04ac23 commit 64a56c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cores/esp8266/core_esp8266_wiring_digital.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ typedef struct {
126126
void* functionInfo;
127127
} ArgStructure;
128128

129-
static interrupt_handler_t interrupt_handlers[16] = {0};
129+
static interrupt_handler_t interrupt_handlers[16] = {0,};
130130
static uint32_t interrupt_reg = 0;
131131

132-
void ICACHE_RAM_ATTR interrupt_handler(void *) {
132+
void ICACHE_RAM_ATTR interrupt_handler(void *arg) {
133133
uint32_t status = GPIE;
134134
GPIEC = status;//clear them interrupts
135135
uint32_t levels = GPI;

0 commit comments

Comments
 (0)