From 6539456746f2d867d9e22ee98564ed7708846b1b Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sun, 15 May 2011 19:52:46 +0000 Subject: [PATCH] Fix format string This was SVN commit r9524. --- source/lib/path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/path.h b/source/lib/path.h index 557710d9c0..2b22b13077 100644 --- a/source/lib/path.h +++ b/source/lib/path.h @@ -208,7 +208,7 @@ public: private: void PrintToDebugOutput() const { - debug_printf(L"Path %ws, separator %c\n", path.c_str(), separator); + debug_printf(L"Path %ls, separator %c\n", path.c_str(), separator); } void DetectSeparator()