goruby_options: do not goto into a branch

I'm not necessarily against every goto in general, but jumping into a
branch is definitely a bad idea.  Better refactor.
This commit is contained in:
卜部昌平 2020-06-15 14:52:02 +09:00
Родитель c5f4345138
Коммит b5adaa8dbd
1 изменённых файлов: 2 добавлений и 4 удалений

Просмотреть файл

@ -49,10 +49,8 @@ goruby_options(int argc, char **argv)
close(infd);
return ret;
}
else {
no_irb:
return ruby_options(argc, argv);
}
no_irb:
return ruby_options(argc, argv);
}
int