1
0
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:
Christian Mehlis 2014-05-02 14:28:45 +02:00
commit c3c903f1df

View File

@ -28,7 +28,7 @@ volatile int busy, i, k;
void busy_thread(void)
{
int j;
int j = 0;
puts("busy_thread starting");
i = 0;