1
0
mirror of https://github.com/jrcutler/threadless.io.git synced 2024-06-05 15:05:41 +00:00

Variable scope cleanup

This commit is contained in:
Justin R. Cutler 2016-04-01 09:12:14 -04:00
parent 2e022ef89c
commit b7197ac8c5

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);
}