From 97dda76e7a56c3b68494c74a1fb0815ba96f7675 Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Thu, 21 Nov 2019 08:57:23 +0100 Subject: [PATCH] cpu/native/irq_cpu.c: fix cpp.check unitialized variable --- cpu/native/irq_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/irq_cpu.c b/cpu/native/irq_cpu.c index 9e265ba609..f443585a65 100644 --- a/cpu/native/irq_cpu.c +++ b/cpu/native/irq_cpu.c @@ -229,7 +229,7 @@ int irq_is_in(void) int _native_popsig(void) { int nread, nleft, i; - int sig; + int sig = 0; nleft = sizeof(int); i = 0;