diff options
author | Edoardo La Greca | 2025-08-10 16:25:29 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-10 16:25:29 +0200 |
commit | 5aff4f23638ee0968f9cc1bb5e9c397fe6b5cc0e (patch) | |
tree | a0cd380fe9e0ee353a1005929b906a6cc85c344f | |
parent | 976684b04761c3d3a7e9df056b520ead816855c1 (diff) |
change field type from FileMode to FilePermissions in Stat
-rw-r--r-- | src/main/kotlin/Stat.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/Stat.kt b/src/main/kotlin/Stat.kt index 53f913d..8fca5a5 100644 --- a/src/main/kotlin/Stat.kt +++ b/src/main/kotlin/Stat.kt @@ -15,7 +15,7 @@ data class Stat( val fid: UInt, val qid: QID, - val mode: FileMode, + val mode: FilePermissions, val atime: UInt, val mtime: UInt, val length: ULong, |