From 3b848a10b39c1897ca1ea3b5149ef72ae43fcd11 Mon Sep 17 00:00:00 2001 From: dcodeIO Date: Fri, 9 Jun 2017 10:08:04 +0200 Subject: [PATCH] Fixed missing semicolon after 'extensions' and 'reserved' when generating proto files, fixes #810 --- cli/targets/proto.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/targets/proto.js b/cli/targets/proto.js index eb8ee6a6b..f1500ac34 100644 --- a/cli/targets/proto.js +++ b/cli/targets/proto.js @@ -162,7 +162,7 @@ function buildRanges(keyword, ranges) { parts.push(range[0] + " to " + (range[1] === 0x1FFFFFFF ? "max" : range[1])); }); push(""); - push(keyword + " " + parts.join(", ")); + push(keyword + " " + parts.join(", ") + ";"); } }