fix copy/paste bug in moving a block of code

This commit is contained in:
Kurtis Rader 2016-07-30 19:59:34 -07:00
parent 5da3d2f27b
commit 6c8ecab44b

View File

@ -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;
}