diff options
Diffstat (limited to 'AK/FileSystemPath.cpp')
-rw-r--r-- | AK/FileSystemPath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/FileSystemPath.cpp b/AK/FileSystemPath.cpp index 5f467c8594..232c05ecb3 100644 --- a/AK/FileSystemPath.cpp +++ b/AK/FileSystemPath.cpp @@ -38,7 +38,7 @@ bool FileSystemPath::canonicalize(bool resolve_symbolic_links) StringBuilder builder; for (auto& cpart : canonical_parts) { builder.append('/'); - builder.append(move(cpart)); + builder.append(cpart); } m_string = builder.build(); return true; |