From 878a41d3be13da2a654df74f2a35ea8b295c8a13 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 16 Oct 2018 17:33:51 -0400 Subject: 10.5 --- zen/file_error.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zen/file_error.h') diff --git a/zen/file_error.h b/zen/file_error.h index 086d0998..101d6543 100755 --- a/zen/file_error.h +++ b/zen/file_error.h @@ -45,7 +45,7 @@ DEFINE_NEW_FILE_ERROR(ErrorDifferentVolume); //----------- facilitate usage of std::wstring for error messages -------------------- -inline std::wstring fmtPath(const std::wstring& displayPath) { return L'\"' + displayPath + L'\"'; } +inline std::wstring fmtPath(const std::wstring& displayPath) { return L'"' + displayPath + L'"'; } inline std::wstring fmtPath(const Zstring& displayPath) { return fmtPath(utfTo(displayPath)); } inline std::wstring fmtPath(const wchar_t* displayPath) { return fmtPath(std::wstring(displayPath)); } //resolve overload ambiguity } -- cgit