summaryrefslogtreecommitdiffstats
path: root/twrpTar.cpp
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2013-02-27 19:07:32 +0100
committerDees_Troy <dees_troy@teamw.in>2013-02-27 19:19:18 +0100
commitee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16 (patch)
tree1603fea0cb6c3882394f5764a057709aef1229b7 /twrpTar.cpp
parentfix restore on mknod (diff)
downloadandroid_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar.gz
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar.bz2
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar.lz
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar.xz
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.tar.zst
android_bootable_recovery-ee6632c3e184eb9ee28c4acf2e3bb1ca37a10c16.zip
Diffstat (limited to 'twrpTar.cpp')
-rw-r--r--twrpTar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/twrpTar.cpp b/twrpTar.cpp
index 0bf76e519..159c1d1b9 100644
--- a/twrpTar.cpp
+++ b/twrpTar.cpp
@@ -122,7 +122,7 @@ int twrpTar::extractTarFork() {
int status;
pid_t pid;
if ((pid = fork()) == -1) {
- LOGI("create tar failed to fork.\n");
+ LOGI("extract tar failed to fork.\n");
return -1;
}
if (pid == 0) {
@@ -144,7 +144,7 @@ int twrpTar::extractTarFork() {
else if (WIFEXITED(status) != 0)
LOGI("Tar extraction successful\n");
else {
- LOGI("Tar creation failed\n");
+ LOGI("Tar extraction failed\n");
return -1;
}
}