From bc11af9ac5c3a218dcde36abd12c85259805c8c6 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Wed, 8 Jul 2020 19:31:29 +0200 Subject: [PATCH] fixing --- src/ipc/lowlevel.cr | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ipc/lowlevel.cr b/src/ipc/lowlevel.cr index aeceabf..fd7e1b8 100644 --- a/src/ipc/lowlevel.cr +++ b/src/ipc/lowlevel.cr @@ -31,10 +31,10 @@ lib LibIPC struct Switching origin : LibC::Int dest : LibC::Int - orig_cb_in : (fd : Int32, Pointer(Message)) -> ConnectionType - orig_cb_out : (fd : Int32, Pointer(Message)) -> ConnectionType - dest_cb_in : (fd : Int32, Pointer(Message)) -> ConnectionType - dest_cb_out : (fd : Int32, Pointer(Message)) -> ConnectionType + orig_cb_in : (Int32, Pointer(Message)) -> ConnectionType + orig_cb_out : (Int32, Pointer(Message)) -> ConnectionType + dest_cb_in : (Int32, Pointer(Message)) -> ConnectionType + dest_cb_out : (Int32, Pointer(Message)) -> ConnectionType end struct Switchings