aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2016-07-29 16:09:53 -0700
committerJisi Liu <jisi.liu@gmail.com>2016-09-07 10:15:10 -0700
commit7645a3d03db9114dd4c36895559f80de4219cdc1 (patch)
tree7b0e98d495408fa33f044b13dc5de5ea4faed536
parent1a586735085e817b1f52e53feec92ce418049f69 (diff)
downloadprotobuf-7645a3d03db9114dd4c36895559f80de4219cdc1.tar.gz
protobuf-7645a3d03db9114dd4c36895559f80de4219cdc1.tar.bz2
protobuf-7645a3d03db9114dd4c36895559f80de4219cdc1.zip
Merge pull request #1884 from hochhaus/valueWriterFn
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();
}