Skip to content

Commit 38ef0f1

Browse files
committed
Fix CI warnings.
(cherry picked from commit 669b9ce)
1 parent 64a56c9 commit 38ef0f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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)