From 5e2b419e9e7a4a803dde7d9729bb48661ce9a23d Mon Sep 17 00:00:00 2001 From: Martin Date: Fri, 2 May 2014 13:57:10 +0200 Subject: [PATCH] initialized `j` with 0 --- tests/test_irq/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_irq/main.c b/tests/test_irq/main.c index 02d40cca1..db49c3ca6 100644 --- a/tests/test_irq/main.c +++ b/tests/test_irq/main.c @@ -28,7 +28,7 @@ volatile int busy, i, k; void busy_thread(void) { - int j; + int j = 0; puts("busy_thread starting"); i = 0;