diff options
author | Elliott Hughes <enh@google.com> | 2015-04-09 02:22:36 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-09 02:22:36 +0200 |
commit | fbde407e4c72965aae4ea6dff7493e30af307ca5 (patch) | |
tree | 1d6cd4cb955dc89e313a6b3f894a10af4d833504 /recovery.cpp | |
parent | Merge "Remove the fixed screen size assumptions." (diff) | |
parent | Enable printf format argument checking. (diff) | |
download | android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar.gz android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar.bz2 android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar.lz android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar.xz android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.tar.zst android_bootable_recovery-fbde407e4c72965aae4ea6dff7493e30af307ca5.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recovery.cpp b/recovery.cpp index 2f8654a84..1726a227e 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -844,7 +844,7 @@ static int apply_from_sdcard(Device* device, bool* wipe_cache) { char* path = browse_directory(SDCARD_ROOT, device); if (path == NULL) { - ui->Print("\n-- No package file selected.\n", path); + ui->Print("\n-- No package file selected.\n"); return INSTALL_ERROR; } |