hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 92d2807ea87ffb2ecf663b88e5e6799382f6562a
parent 4ed4b43b8d24fcaa75d0cb47d8d0692923ece5bb
Author: Mykyta Holubakha <hilobakho@gmail.com>
Date:   Fri,  2 Apr 2021 00:33:08 +0300

rt: fix UNIX_PATH_MAX type

Diffstat:
Mrt/+linux/socket.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/+linux/socket.ha b/rt/+linux/socket.ha @@ -27,7 +27,7 @@ export type sockaddr_in6 = struct { sin6_scope_id: u32, }; -export def UNIX_PATH_MAX: int = 108; +export def UNIX_PATH_MAX: size = 108; export type sockaddr_un = struct { sun_family: sa_family_t,