test262-runner: Rename variable stdin to standard_input

This was shadowing a name in LibC triggering warnings.
This commit is contained in:
davidot 2022-09-11 10:15:05 +02:00 committed by Linus Groh
parent 3b020c6fb4
commit e3fb5d227a
Notes: sideshowbarker 2024-07-17 07:17:45 +09:00

View file

@ -608,11 +608,11 @@ int main(int argc, char** argv)
#define DISARM_TIMER() \
alarm(0)
auto stdin = Core::File::standard_input();
auto standard_input = Core::File::standard_input();
size_t count = 0;
while (!stdin->eof()) {
auto path = stdin->read_line();
while (!standard_input->eof()) {
auto path = standard_input->read_line();
if (path.is_empty()) {
continue;
}