mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +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)
|
void busy_thread(void)
|
||||||
{
|
{
|
||||||
int j;
|
int j = 0;
|
||||||
puts("busy_thread starting");
|
puts("busy_thread starting");
|
||||||
|
|
||||||
i = 0;
|
i = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user