diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2015-12-21 05:49:00 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2015-12-21 05:49:00 +0100 |
commit | 56db1c4e7ff170d4bc6e071cbafc2040df8ff527 (patch) | |
tree | 5cdfa4c83b59e73eb32a228321a81f61abf6e43b /partitionmanager.cpp | |
parent | twmsg: fix build error (isdigit not declared) (diff) | |
download | android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar.gz android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar.bz2 android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar.lz android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar.xz android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.tar.zst android_bootable_recovery-56db1c4e7ff170d4bc6e071cbafc2040df8ff527.zip |
Diffstat (limited to '')
-rw-r--r-- | partitionmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partitionmanager.cpp b/partitionmanager.cpp index cd2cde7fe..d459612e7 100644 --- a/partitionmanager.cpp +++ b/partitionmanager.cpp @@ -816,7 +816,7 @@ int TWPartitionManager::Run_Backup(void) { gui_msg(Msg("total_backed_size=[{1} MB TOTAL BACKED UP]")(actual_backup_size)); Update_System_Details(); UnMount_Main_Partitions(); - gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN %s SECONDS]")(total_time)); // the end + gui_msg(Msg(msg::kHighlight, "backup_completed=[BACKUP COMPLETED IN {1} SECONDS]")(total_time)); // the end string backup_log = Full_Backup_Path + "recovery.log"; TWFunc::copy_file("/tmp/recovery.log", backup_log, 0644); tw_set_default_metadata(backup_log.c_str()); |