Skip to content

Commit

Permalink
fixup! cpu/native/irq_cpu.c: fix cpp.check unitialized variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fjmolinas committed Nov 21, 2019
1 parent d43b77c commit 7b7b7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu/native/irq_cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ int irq_is_in(void)
int _native_popsig(void)
{
int nread, nleft, i;
int sig = -1;
int sig = 0;

nleft = sizeof(int);
i = 0;
Expand Down

0 comments on commit 7b7b7ec

Please sign in to comment.