diff options
author | Doug Zongker <dougz@google.com> | 2014-08-06 17:25:03 +0200 |
---|---|---|
committer | Doug Zongker <dougz@google.com> | 2014-08-06 17:25:03 +0200 |
commit | 2b5f0e0f767ce51d9605809052ad04fe83d1df83 (patch) | |
tree | 9219b4582e77d19894177bd4acf86477fb0e431e /updater | |
parent | Fix length printing + formats (diff) | |
download | android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar.gz android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar.bz2 android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar.lz android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar.xz android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.tar.zst android_bootable_recovery-2b5f0e0f767ce51d9605809052ad04fe83d1df83.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/install.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/updater/install.c b/updater/install.c index 5025881d2..198618001 100644 --- a/updater/install.c +++ b/updater/install.c @@ -353,15 +353,14 @@ Value* RenameFn(const char* name, State* state, int argc, Expr* argv[]) { goto done; } if (strlen(dst_name) == 0) { - ErrorAbort(state, "dst_name argument to %s() can't be empty", - name); + ErrorAbort(state, "dst_name argument to %s() can't be empty", name); goto done; } if (make_parents(dst_name) != 0) { - ErrorAbort(state, "Creating parent of %s() failed, error %s()", + ErrorAbort(state, "Creating parent of %s failed, error %s", dst_name, strerror(errno)); } else if (rename(src_name, dst_name) != 0) { - ErrorAbort(state, "Rename of %s() to %s() failed, error %s()", + ErrorAbort(state, "Rename of %s to %s failed, error %s", src_name, dst_name, strerror(errno)); } else { result = dst_name; |