diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-12-08 22:34:34 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2014-12-09 04:46:00 +0100 |
commit | 448c8dc4c177ebd05481a79c0aab426f58d72234 (patch) | |
tree | 899a7e1227679f526f4df19d0b5f40fa0f15b170 /partition.cpp | |
parent | Remove new images from AOSP (diff) | |
download | android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar.gz android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar.bz2 android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar.lz android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar.xz android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.tar.zst android_bootable_recovery-448c8dc4c177ebd05481a79c0aab426f58d72234.zip |
Diffstat (limited to 'partition.cpp')
-rw-r--r-- | partition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partition.cpp b/partition.cpp index 6225f221f..d84e48fae 100644 --- a/partition.cpp +++ b/partition.cpp @@ -1745,7 +1745,7 @@ bool TWPartition::Backup_DD(string backup_folder) { Full_FileName = backup_folder + "/" + Backup_FileName; - Command = "dd if=" + Actual_Block_Device + " of='" + Full_FileName + "'" + " bs=" + DD_BS + "c count=1"; + Command = "dd if=" + Actual_Block_Device + " of='" + Full_FileName + "'" + " bs=" + DD_BS + " count=1"; LOGINFO("Backup command: '%s'\n", Command.c_str()); TWFunc::Exec_Cmd(Command); if (TWFunc::Get_File_Size(Full_FileName) == 0) { |