diff options
author | Lioncash <mathew1800@gmail.com> | 2018-04-27 07:54:05 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-04-27 10:04:02 -0400 |
commit | 847549663090aeef89debc6213ef17b7f14e0b0e (patch) | |
tree | 899731d5c75a7b40a8aa72f5e115f86e10078745 /src/common/file_util.cpp | |
parent | 3c404964097a0882ce9651571ec02c54474350ce (diff) |
general: Convert assertion macros over to be fmt-compatible
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 37f9e996c9..cd852bfd85 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) { else if (envvar == "XDG_CACHE_HOME") subdirectory = DIR_SEP ".cache"; else - ASSERT_MSG(false, "Unknown XDG variable %s.", envvar.c_str()); + ASSERT_MSG(false, "Unknown XDG variable {}.", envvar); user_dir = GetHomeDirectory() + subdirectory; } - ASSERT_MSG(!user_dir.empty(), "User directory %s musn’t be empty.", envvar.c_str()); - ASSERT_MSG(user_dir[0] == '/', "User directory %s must be absolute.", envvar.c_str()); + ASSERT_MSG(!user_dir.empty(), "User directory {} mustn’t be empty.", envvar); + ASSERT_MSG(user_dir[0] == '/', "User directory {} must be absolute.", envvar); return user_dir; } |