Skip to content

Commit 669b9ce

Browse files
committed
Fix CI warnings.
1 parent 5c8c68f commit 669b9ce

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 *arg) {
132+
void ICACHE_RAM_ATTR interrupt_handler(void *) {
133133
uint32_t status = GPIE;
134134
GPIEC = status;//clear them interrupts
135135
uint32_t levels = GPI;

0 commit comments

Comments
 (0)