From 5b67cec4e0edca65df3ce75af748c0df8d1162c7 Mon Sep 17 00:00:00 2001 From: Robin Lambertz Date: Tue, 29 Jan 2013 00:48:01 +0000 Subject: [PATCH] ups. Fixed a syntax error. --- lib/protocol.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/protocol.js b/lib/protocol.js index 3fab3a3..287fbb5 100644 --- a/lib/protocol.js +++ b/lib/protocol.js @@ -1212,7 +1212,7 @@ function parsePacket(buffer, isServer) { read = types[fieldInfo.type][0]; if (!read) { return { - error: "missing reader for data type: " + fieldInfo.type; + error: "missing reader for data type: " + fieldInfo.type } } readResults = read(buffer, size);