Bugfix (Int32 type declaration).

ipc07
Karchnu 2020-07-13 15:06:12 +02:00
parent 2ed077f3f9
commit 2505ec1c4a
1 changed files with 1 additions and 1 deletions

View File

@ -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