summaryrefslogtreecommitdiffstats
path: root/twrp-functions.cpp
diff options
context:
space:
mode:
authorMatt Mower <mowerm@gmail.com>2015-12-26 02:28:31 +0100
committerDees Troy <dees_troy@teamw.in>2016-01-22 05:29:04 +0100
commit3c36697b2d1572f963a8e6d34e648efa004029cc (patch)
tree822c1fb8881a6aa3f1cd3f8e4786371be4554ec6 /twrp-functions.cpp
parentEnsure that a base language is loaded before custom theme (diff)
downloadandroid_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar.gz
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar.bz2
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar.lz
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar.xz
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.tar.zst
android_bootable_recovery-3c36697b2d1572f963a8e6d34e648efa004029cc.zip
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r--twrp-functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp
index def265ca6..e73a52dbb 100644
--- a/twrp-functions.cpp
+++ b/twrp-functions.cpp
@@ -409,7 +409,7 @@ int TWFunc::Recursive_Mkdir(string Path) {
cur_path += "/" + parts[i];
if (!TWFunc::Path_Exists(cur_path)) {
if (mkdir(cur_path.c_str(), 0777)) {
- gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2})")(cur_path)(strerror(errno)));
+ gui_msg(Msg(msg::kError, "create_folder_strerr=Can not create '{1}' folder ({2}).")(cur_path)(strerror(errno)));
return false;
} else {
tw_set_default_metadata(cur_path.c_str());