diff options
author | Gunnar Beutner <gunnar@beutner.name> | 2021-04-22 16:39:02 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-29 10:33:44 +0200 |
commit | c8611955571f779dbb99552551b549322596171a (patch) | |
tree | 5c5896eec2d4369f9e2b5104d8ba161474377402 /Userland/Utilities/tar.cpp | |
parent | 8cd62b57802b8a41718c80d8645d79f2516e2072 (diff) | |
download | serenity-c8611955571f779dbb99552551b549322596171a.zip |
Userland: Fix new GCC warnings
Diffstat (limited to 'Userland/Utilities/tar.cpp')
-rw-r--r-- | Userland/Utilities/tar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/tar.cpp b/Userland/Utilities/tar.cpp index 184034f091..3f2ea95562 100644 --- a/Userland/Utilities/tar.cpp +++ b/Userland/Utilities/tar.cpp @@ -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 { |