summaryrefslogtreecommitdiff
path: root/cmds/idmap/scan.cpp
diff options
context:
space:
mode:
author Adam Lesinski <adamlesinski@google.com> 2015-10-12 19:29:39 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-10-12 19:29:39 +0000
commitbac309ca8f4ecd1a835aa36f4be2a1fa45577eab (patch)
treee4f1ac4ccd4beaaeb37eb0bb51a34c830601db8e /cmds/idmap/scan.cpp
parent2327239d65525d8ba2bdbedd6e59809fef447a12 (diff)
parent7197d91eb7dfbd0f5b065b56d4f391019e71d03a (diff)
Merge "RRO: idmap: fix sorting of overlays.list"
Diffstat (limited to 'cmds/idmap/scan.cpp')
-rw-r--r--cmds/idmap/scan.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmds/idmap/scan.cpp b/cmds/idmap/scan.cpp
index a33c403683de..f1b2f9e72ca0 100644
--- a/cmds/idmap/scan.cpp
+++ b/cmds/idmap/scan.cpp
@@ -25,8 +25,7 @@ namespace {
bool operator<(Overlay const& rhs) const
{
- // Note: order is reversed by design
- return rhs.priority < priority;
+ return rhs.priority > priority;
}
String8 apk_path;