diff options
author | Emery Hemingway <githubjunk@spam.works> | 2017-07-14 09:43:42 -0500 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-07-14 16:43:42 +0200 |
commit | 85d4109a0d17b2a5d543b3e422c3b65457394638 (patch) | |
tree | 301ba13a6f216f71cba98ddc10278eddd799fdad /lib/posix/posix_other.nim | |
parent | ca0155a45808aa047661cbcb3d31fef6f7088953 (diff) | |
download | Nim-85d4109a0d17b2a5d543b3e422c3b65457394638.tar.gz |
Genode readdir fix (#6080)
The Genode readdir is inherited from then FreeBSD libc.
Diffstat (limited to 'lib/posix/posix_other.nim')
-rw-r--r-- | lib/posix/posix_other.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/posix/posix_other.nim b/lib/posix/posix_other.nim index b1cc244b7..1d50f2bac 100644 --- a/lib/posix/posix_other.nim +++ b/lib/posix/posix_other.nim @@ -48,7 +48,7 @@ type # DragonflyBSD doesn't have `d_reclen` field. d_type*: uint8 elif defined(linux) or defined(macosx) or defined(freebsd) or - defined(netbsd) or defined(openbsd): + defined(netbsd) or defined(openbsd) or defined(genode): d_reclen*: cshort ## Length of this record. (not POSIX) d_type*: int8 ## Type of file; not supported by all filesystem types. ## (not POSIX) |