From 796ea333d4d2f4b129b97dc8d975563a130fe7a8 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Tue, 17 Jun 2014 14:18:56 -0300 Subject: build: Fix error in dispatch generator for functions with channel_id --- scripts/msgpack-gen.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/msgpack-gen.lua b/scripts/msgpack-gen.lua index c8a09c8e96..e7d5d5a503 100644 --- a/scripts/msgpack-gen.lua +++ b/scripts/msgpack-gen.lua @@ -186,7 +186,7 @@ for i = 1, #api.functions do if #args > 0 then output:write('channel_id, '..call_args) else - output:write('channel_id)') + output:write('channel_id') end else output:write(call_args) -- cgit