diff options
| author | 2019-03-14 12:40:43 -0700 | |
|---|---|---|
| committer | 2019-03-14 12:40:43 -0700 | |
| commit | 77dc7eb6855f6a54c848063d6a0c309a9c554c20 (patch) | |
| tree | 8e4530e93c697c75836dc5c2a828cc212926d9c2 | |
| parent | 2bb8c6b1d741c7899da6a61fce9bdcad94ca89d0 (diff) | |
| parent | 6095b96721660780874304dcee069fbf1c7d5c63 (diff) | |
Merge "Fix a typo in an error message of dexopt." am: 5f05746eb1
am: 6095b96721
Change-Id: Ia72d39a8ac6b0f8be10add7b5d05d784704daecc
| -rw-r--r-- | cmds/installd/dexopt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/dexopt.cpp b/cmds/installd/dexopt.cpp index ffd1191501..72571cf622 100644 --- a/cmds/installd/dexopt.cpp +++ b/cmds/installd/dexopt.cpp @@ -608,7 +608,7 @@ static unique_fd create_profile(uid_t uid, const std::string& profile, int32_t f // the app uid. If we cannot do that, there's no point in returning the fd // since dex2oat/profman will fail with SElinux denials. if (fchown(fd.get(), uid, uid) < 0) { - PLOG(ERROR) << "Could not chwon profile " << profile; + PLOG(ERROR) << "Could not chown profile " << profile; return invalid_unique_fd(); } return fd; |