From 7afd12e2429eca0747680fd998a0511049e325a6 Mon Sep 17 00:00:00 2001 From: Karchnu Date: Thu, 2 Jul 2020 22:29:35 +0200 Subject: [PATCH] UInt64T --- src/ipc/lowlevel.cr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ipc/lowlevel.cr b/src/ipc/lowlevel.cr index 3ab481f..eb8b282 100644 --- a/src/ipc/lowlevel.cr +++ b/src/ipc/lowlevel.cr @@ -16,7 +16,7 @@ lib LibIPC cinfos : Connection* pollfd : Pollfd* tx : Messages - size : LibC::UInt64 + size : LibC::UInt64T end struct Switching @@ -39,7 +39,7 @@ lib LibIPC # Messages are stored in lists within the libipc before being sent. struct Messages messages : Message* - size : LibC::UInt64 + size : LibC::UInt64T end struct Message @@ -82,7 +82,7 @@ lib LibIPC fun ipc_connection(Ctx*, LibC::Char*) : IPCError # Closing connections. - fun ipc_close(ctx : Ctx*, index : LibC::UInt64) : IPCError + fun ipc_close(ctx : Ctx*, index : LibC::UInt64T) : IPCError fun ipc_close_all(ctx : Ctx*) # Void fun ipc_ctx_free(Ctx*) # Void