From ffcb734bfdcab26a22ae718f1ba84f9092530bfe Mon Sep 17 00:00:00 2001 From: Karchnu Date: Thu, 2 Jul 2020 22:36:51 +0200 Subject: [PATCH] Int => Int32 --- src/ipc/event.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ipc/event.cr b/src/ipc/event.cr index 2d763c2..1eade92 100644 --- a/src/ipc/event.cr +++ b/src/ipc/event.cr @@ -20,8 +20,8 @@ class IPC::Event::Timer < IPC::Event end class IPC::Event::Base < IPC::Event - getter fd : Int - getter index : UInt64 + property fd : Int32 + property index : UInt32 def initialize(@fd, @index) end