From 39a076f19c05ac1ebb4f1dd15f9835ffb8611ae0 Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Thu, 7 Dec 2017 18:18:14 +0000 Subject: Fix WideString::Format instances that should use %ls BUG=pdfium:951 Change-Id: I4b82ce81c8db3f00fa2341c6fb853ed84814e5e5 Reviewed-on: https://pdfium-review.googlesource.com/20510 Reviewed-by: dsinclair Commit-Queue: Ryan Harrison --- fxjs/cjs_runtime.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fxjs/cjs_runtime.cpp') diff --git a/fxjs/cjs_runtime.cpp b/fxjs/cjs_runtime.cpp index 87224af8e2..c8e95e16e5 100644 --- a/fxjs/cjs_runtime.cpp +++ b/fxjs/cjs_runtime.cpp @@ -208,7 +208,7 @@ int CJS_Runtime::ExecuteScript(const WideString& script, WideString* info) { FXJSErr error = {}; int nRet = Execute(script, &error); if (nRet < 0) { - *info = WideString::Format(L"[ Line: %05d { %s } ] : %s", error.linnum - 1, + *info = WideString::Format(L"[ Line: %05d { %ls } ] : %s", error.linnum - 1, error.srcline, error.message); } return nRet; -- cgit v1.2.3