summary refs log tree commit diff stats
path: root/lib/posix
diff options
context:
space:
mode:
authorJakob Oesterling <registermail@posteo.de>2015-04-01 00:12:55 +0200
committerJakob Oesterling <registermail@posteo.de>2015-04-01 00:12:55 +0200
commitff75cf5c2c67b49659667eb7b9b37e12b244be0f (patch)
tree97767ac66497296e335535c72b8fa76cb9c0733c /lib/posix
parentcb75830c765ebfc1a9e34f2dce03004aa6f62e20 (diff)
downloadNim-ff75cf5c2c67b49659667eb7b9b37e12b244be0f.tar.gz
fixes https://github.com/Araq/Nim/issues/2116
Diffstat (limited to 'lib/posix')
-rw-r--r--lib/posix/posix.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/posix/posix.nim b/lib/posix/posix.nim
index 00b655a10..5c3190bf7 100644
--- a/lib/posix/posix.nim
+++ b/lib/posix/posix.nim
@@ -95,10 +95,11 @@ type
              header: "<dirent.h>", final, pure.} = object ## dirent_t struct
     d_ino*: Tino  ## File serial number.
     when defined(linux) or defined(macosx) or defined(bsd):
-      d_off*: TOff  ## Not an offset. Value that ``telldir()`` would return.
       d_reclen*: cshort ## Length of this record. (not POSIX)
       d_type*: int8 ## Type of file; not supported by all filesystem types.
                     ## (not POSIX)
+      when defined(linux) or defined(bsd):
+        d_off*: TOff  ## Not an offset. Value that ``telldir()`` would return.
     d_name*: array [0..255, char] ## Name of entry.
 
   Tflock* {.importc: "struct flock", final, pure,