Userland: Fix new GCC warnings

This commit is contained in:
Gunnar Beutner 2021-04-22 16:39:02 +02:00 committed by Andreas Kling
commit c861195557
Notes: sideshowbarker 2024-07-18 18:56:35 +09:00
5 changed files with 12 additions and 3 deletions

View file

@ -175,7 +175,7 @@ int main(int argc, char** argv)
}
};
for (const String& path : paths) {
for (const String path : paths) {
if (Core::File::is_directory(path)) {
add_directory(path, add_directory);
} else {