Force File::Info#inode to return UInt64

This commit is contained in:
Alex Ling 2021-01-27 03:39:58 +00:00
parent 5779d225f6
commit 07965b98b7

View File

@ -2,8 +2,8 @@ require "./util"
class File
abstract struct Info
def inode
@stat.st_ino
def inode : UInt64
@stat.st_ino.to_u64
end
end