diff options
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r-- | twrp-functions.cpp | 2 |
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()); |