From 2505ec1c4ae378545e043cb74eaf357af288f437 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Mon, 13 Jul 2020 15:06:12 +0200 Subject: [PATCH] Bugfix (Int32 type declaration). --- src/json.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json.cr b/src/json.cr index 31145ea..b0c9090 100644 --- a/src/json.cr +++ b/src/json.cr @@ -27,7 +27,7 @@ end class IPC::Context def send(fd : Int32, message : IPC::JSON) - send fd : Int32, message.type.to_u8, message.to_json + send fd, message.type.to_u8, message.to_json end end