1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:57:45 +00:00

Userland/ls: Remove unnecessary output

This commit is contained in:
Hüseyin ASLITÜRK 2020-04-25 12:47:06 +03:00 committed by Andreas Kling
parent 6dde2c7f47
commit e00b85b8c0

View file

@ -122,7 +122,6 @@ int main(int argc, char** argv)
status = do_file_system_object(paths[0]); status = do_file_system_object(paths[0]);
} else { } else {
for (auto& path : paths) { for (auto& path : paths) {
printf("%s:\n", path);
status = do_file_system_object(path); status = do_file_system_object(path);
} }
} }