Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian White <mscdex@mscdex.net>2017-05-18 06:19:56 +0300
committerBrian White <mscdex@mscdex.net>2017-05-22 23:09:34 +0300
commitdcc59f91c68e2bedd489aab4499ef8637c5ae419 (patch)
tree720f93633b3cad21067df959d98ad9be26884c84 /src/node_i18n.cc
parentf529706eb0bb5dcc2222b4cf6eaa313fd14d4968 (diff)
src: fix typo
PR-URL: https://github.com/nodejs/node/pull/13085 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ron Korving <ron@ronkorving.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'src/node_i18n.cc')
-rw-r--r--src/node_i18n.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_i18n.cc b/src/node_i18n.cc
index 98818b581b7..dc50f9995a6 100644
--- a/src/node_i18n.cc
+++ b/src/node_i18n.cc
@@ -326,7 +326,7 @@ void Transcode(const FunctionCallbackInfo<Value>&args) {
tfn = &TranscodeUtf8FromUcs2;
break;
default:
- tfn = TranscodeFromUcs2;
+ tfn = &TranscodeFromUcs2;
}
break;
default: