Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8c413cb authored by Yi-Yo Chiang's avatar Yi-Yo Chiang Committed by Automerger Merge Worker
Browse files

Merge "Remove std::move() around const variable" am: 833adaf2 am: 93e910c7 am: 2725f229

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1890101

Change-Id: Id8f9f228cd9d74453d3b0b3ea39da7a5238eafc7
parents 935fd378 2725f229
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ void ParseMountFlags(const std::string& flags, FstabEntry* entry) {
                        entry->reserved_size = size_in_4k_blocks << 12;
                    }
                } else if (StartsWith(flag, "lowerdir=")) {
                    entry->lowerdir = std::move(arg);
                    entry->lowerdir = arg;
                }
            }
        }