aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Hochhaus <ahochhaus@samegoal.com>2016-07-29 08:56:28 -0700
committerAndy Hochhaus <ahochhaus@samegoal.com>2016-07-29 09:21:01 -0700
commita2174089b2c508f376b82ea0ef47a200aaf34ea2 (patch)
tree122272fc7c72c440aaeb4ca1b91e564070c4c726
parente7982e409deab9cb4390dd574441604e846caf7f (diff)
downloadprotobuf-a2174089b2c508f376b82ea0ef47a200aaf34ea2.tar.gz
protobuf-a2174089b2c508f376b82ea0ef47a200aaf34ea2.tar.bz2
protobuf-a2174089b2c508f376b82ea0ef47a200aaf34ea2.zip
Fix valueWriterFn variable name
-rw-r--r--js/map.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/map.js b/js/map.js
index f051e00d..e6406a60 100644
--- a/js/map.js
+++ b/js/map.js
@@ -365,7 +365,7 @@ jspb.Map.prototype.serializeBinary = function(
valueWriterFn.call(writer, 2, this.wrapEntry_(entry),
opt_valueWriterCallback);
} else {
- valueWriterFn_.call(writer, 2, entry.value);
+ valueWriterFn.call(writer, 2, entry.value);
}
writer.endSubMessage();
}