From 6c8ecab44ba4cc9f12f358fde8217f3b1c6a0952 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Sat, 30 Jul 2016 19:59:34 -0700 Subject: [PATCH] fix copy/paste bug in moving a block of code --- src/env_universal_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env_universal_common.cpp b/src/env_universal_common.cpp index aaa73aae9..96517265f 100644 --- a/src/env_universal_common.cpp +++ b/src/env_universal_common.cpp @@ -593,7 +593,7 @@ bool env_universal_t::open_temporary_file(const wcstring &directory, wcstring *o } if (!success) { - report_error(saved_errno, L"Unable to open temporary file '%s'", out_path->c_str()); + report_error(saved_errno, L"Unable to open temporary file '%ls'", out_path->c_str()); } return success; }