From 7cab757d7b090db039cdc3782a1ec81333113ccf Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 24 Sep 2024 11:47:48 -0600 Subject: [PATCH] redox: Make ino_t be c_ulonglong (#3919) --- src/unix/redox/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/redox/mod.rs b/src/unix/redox/mod.rs index bc6e2a8a93d4e..87fb3cc7adb2f 100644 --- a/src/unix/redox/mod.rs +++ b/src/unix/redox/mod.rs @@ -22,7 +22,7 @@ pub type clockid_t = ::c_int; pub type dev_t = ::c_long; pub type fsblkcnt_t = ::c_ulong; pub type fsfilcnt_t = ::c_ulong; -pub type ino_t = ::c_ulong; +pub type ino_t = ::c_ulonglong; pub type mode_t = ::c_int; pub type nfds_t = ::c_ulong; pub type nlink_t = ::c_ulong;