diff options
Diffstat (limited to 'src/common/file_util.cpp')
| -rw-r--r-- | src/common/file_util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 37f9e996c..cd852bfd8 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -653,12 +653,12 @@ static const std::string GetUserDirectory(const std::string& envvar) { | |||
| 653 | else if (envvar == "XDG_CACHE_HOME") | 653 | else if (envvar == "XDG_CACHE_HOME") |
| 654 | subdirectory = DIR_SEP ".cache"; | 654 | subdirectory = DIR_SEP ".cache"; |
| 655 | else | 655 | else |
| 656 | ASSERT_MSG(false, "Unknown XDG variable %s.", envvar.c_str()); | 656 | ASSERT_MSG(false, "Unknown XDG variable {}.", envvar); |
| 657 | user_dir = GetHomeDirectory() + subdirectory; | 657 | user_dir = GetHomeDirectory() + subdirectory; |
| 658 | } | 658 | } |
| 659 | 659 | ||
| 660 | ASSERT_MSG(!user_dir.empty(), "User directory %s musn’t be empty.", envvar.c_str()); | 660 | ASSERT_MSG(!user_dir.empty(), "User directory {} mustn’t be empty.", envvar); |
| 661 | ASSERT_MSG(user_dir[0] == '/', "User directory %s must be absolute.", envvar.c_str()); | 661 | ASSERT_MSG(user_dir[0] == '/', "User directory {} must be absolute.", envvar); |
| 662 | 662 | ||
| 663 | return user_dir; | 663 | return user_dir; |
| 664 | } | 664 | } |