diff options
author | Elliott Hughes <enh@google.com> | 2015-04-13 13:29:38 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-13 13:29:38 -0700 |
commit | e46066f2694ff98b439ea370826dc14698998aa2 (patch) | |
tree | eb7f234c2ee3bb70aae5a05a3cbffcb6cee7b743 | |
parent | eab12de70efb649ab33f7971e948251895d613fe (diff) | |
download | bootable_recovery-e46066f2694ff98b439ea370826dc14698998aa2.zip bootable_recovery-e46066f2694ff98b439ea370826dc14698998aa2.tar.gz bootable_recovery-e46066f2694ff98b439ea370826dc14698998aa2.tar.bz2 |
Add missing \n after "Mounting /system." message.
Change-Id: I280a478526f033f5c0041d7e8a818fce6177d732
-rw-r--r-- | recovery.cpp | 2 |
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; } |