Variable scope cleanup

This commit is contained in:
Justin R. Cutler 2016-04-01 09:12:14 -04:00
parent 2e022ef89c
commit b7197ac8c5
1 changed files with 1 additions and 2 deletions

View File

@ -62,9 +62,8 @@ static int run(void)
goto fail;
}
void *data;
while (!(coroutine_ended(fibonacci) || coroutine_ended(output))) {
void *data;
data = coroutine_resume(fibonacci, NULL);
data = coroutine_resume(output, data);
}