From 0803eacdea5bb49ed0de367ee1e07b60c607d59e Mon Sep 17 00:00:00 2001 From: Nicolas Rodriguez Date: Thu, 2 May 2024 08:40:12 +0200 Subject: [PATCH] Rewrite Int64 to LibC::Int See: https://github.com/vstakhov/libucl/blob/master/include/ucl.h#L955 --- src/ucl/lib_ucl.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ucl/lib_ucl.cr b/src/ucl/lib_ucl.cr index e0bd7e6..c2ff271 100644 --- a/src/ucl/lib_ucl.cr +++ b/src/ucl/lib_ucl.cr @@ -71,7 +71,7 @@ module UCL type : UInt16 end - fun new = ucl_parser_new(flags : Int64) : Parser* + fun new = ucl_parser_new(flags : LibC::Int) : Parser* fun add_string = ucl_parser_add_string(parser : Parser*, data : LibC::Char*, len : LibC::SizeT) : Bool fun get_error = ucl_parser_get_error(parser : Parser*) : LibC::Char* fun get_object = ucl_parser_get_object(parser : Parser*) : UclObject*