summaryrefslogtreecommitdiff
path: root/fxjs/cjs_runtime.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fxjs/cjs_runtime.cpp')
-rw-r--r--fxjs/cjs_runtime.cpp2
1 files changed, 1 insertions, 1 deletions
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;