diff options
author | Jacek Sieka <arnetheduck@gmail.com> | 2023-06-27 08:19:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 08:19:17 +0200 |
commit | 4b761295e7ab31412903c02b8fb98f580bf005ca (patch) | |
tree | faf9218dd1d1b92d5482d0491ff63340aa0639dd | |
parent | 4ce3a68e794fe3d448928ccbbc34191ce24c4fbd (diff) | |
download | Nim-4b761295e7ab31412903c02b8fb98f580bf005ca.tar.gz |
fix struct stat (#22161)
Undo damage of https://github.com/nim-lang/Nim/pull/14170
-rw-r--r-- | lib/posix/posix_linux_amd64.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/posix/posix_linux_amd64.nim b/lib/posix/posix_linux_amd64.nim index 4eb357d62..91c290a44 100644 --- a/lib/posix/posix_linux_amd64.nim +++ b/lib/posix/posix_linux_amd64.nim @@ -241,6 +241,7 @@ type st_atim*: Timespec ## Time of last access. st_mtim*: Timespec ## Time of last data modification. st_ctim*: Timespec ## Time of last status change. + reserved: array[3, clong] Statvfs* {.importc: "struct statvfs", header: "<sys/statvfs.h>", final, pure.} = object ## struct statvfs |