summaryrefslogtreecommitdiffstats
path: root/webclients/novnc/include/base64.js
diff options
context:
space:
mode:
Diffstat (limited to 'webclients/novnc/include/base64.js')
-rw-r--r--webclients/novnc/include/base64.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclients/novnc/include/base64.js b/webclients/novnc/include/base64.js
index c68b33a..e9b3c52 100644
--- a/webclients/novnc/include/base64.js
+++ b/webclients/novnc/include/base64.js
@@ -116,7 +116,7 @@ decode: function (data, offset) {
padding = (data.charAt(i) === pad);
// Skip illegal characters and whitespace
if (c === -1) {
- console.error("Illegal character '" + data.charCodeAt(i) + "'");
+ console.error("Illegal character code " + data.charCodeAt(i) + " at position " + i);
continue;
}