mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #1090 from BytesGalore/fix_use_uninitialized_variable_warning
test:test_irq initialized `j` with 0
This commit is contained in:
commit
c3c903f1df
@ -28,7 +28,7 @@ volatile int busy, i, k;
|
||||
|
||||
void busy_thread(void)
|
||||
{
|
||||
int j;
|
||||
int j = 0;
|
||||
puts("busy_thread starting");
|
||||
|
||||
i = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user