diff options
author | bigbiff bigbiff <bigbiff@teamw.in> | 2013-09-10 16:28:26 +0200 |
---|---|---|
committer | bigbiff bigbiff <bigbiff@teamw.in> | 2013-09-10 16:28:26 +0200 |
commit | 6b059548df4d4bf9a342989d9fe2087995dbec31 (patch) | |
tree | d608be74d30bfda84f6bc7df7fe2f8d86d49d41c | |
parent | Merge "Add more args to make_ext4fs command" into twrp2.7 (diff) | |
download | android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar.gz android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar.bz2 android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar.lz android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar.xz android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.tar.zst android_bootable_recovery-6b059548df4d4bf9a342989d9fe2087995dbec31.zip |
-rw-r--r-- | twrpDigest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/twrpDigest.cpp b/twrpDigest.cpp index ce3d87cca..e888d8561 100644 --- a/twrpDigest.cpp +++ b/twrpDigest.cpp @@ -43,6 +43,7 @@ extern "C" #include "variables.h" #include "twrp-functions.hpp" #include "twrpDigest.hpp" +#include "twcommon.h" using namespace std; @@ -82,6 +83,7 @@ int twrpDigest::write_md5digest(void) { md5string += basename((char*) md5fn.c_str()); md5string += + "\n"; TWFunc::write_file(md5file, md5string); + LOGINFO("MD5 for %s: %s\n", md5fn.c_str(), md5string.c_str()); return 0; } |