Skip to content

Commit 138fa97

Browse files
committed
std.fs.File: use u64 instead of posix.ino_t for inode number in Stat
1 parent 36da7c6 commit 138fa97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/std/fs/File.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ pub const Stat = struct {
380380
///
381381
/// The FileIndex on Windows is similar. It is a number for a file that
382382
/// is unique to each filesystem.
383-
inode: INode,
383+
inode: u64,
384384
size: u64,
385385
/// This is available on POSIX systems and is always 0 otherwise.
386386
mode: Mode,

0 commit comments

Comments
 (0)