aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-13 20:50:56 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-13 20:50:56 +0000
commitcbdc7e844a8dafbada50ca8bae9319b7bd7980f2 (patch)
treeeb7f234c2ee3bb70aae5a05a3cbffcb6cee7b743
parentd7823c5dfed67b1e8b0e175e588fb2dc643ebc65 (diff)
parent17b032e159779886f0151641a9aad5003debdce2 (diff)
downloadbootable_recovery-cbdc7e844a8dafbada50ca8bae9319b7bd7980f2.zip
bootable_recovery-cbdc7e844a8dafbada50ca8bae9319b7bd7980f2.tar.gz
bootable_recovery-cbdc7e844a8dafbada50ca8bae9319b7bd7980f2.tar.bz2
am 17b032e1: Merge "Add missing \n after "Mounting /system." message."
* commit '17b032e159779886f0151641a9aad5003debdce2': Add missing \n after "Mounting /system." message.
-rw-r--r--recovery.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp
index 75534e7..f7ae5e7 100644
--- a/recovery.cpp
+++ b/recovery.cpp
@@ -869,7 +869,7 @@ prompt_and_wait(Device* device, int status) {
case Device::MOUNT_SYSTEM:
if (ensure_path_mounted("/system") != -1) {
- ui->Print("Mounted /system.");
+ ui->Print("Mounted /system.\n");
}
break;
}