diff options
author | Araq <rumpf_a@web.de> | 2019-07-15 12:03:21 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-15 12:03:21 +0200 |
commit | ad67a46e5ddcf260281b13b79bf50afa779b234d (patch) | |
tree | aa06003146a63759bc67b74152b14f061f8a87b2 /lib/posix/posix_nintendoswitch.nim | |
parent | 52cbd0c55801b04d9e5740df7aa741a8bf0327e2 (diff) | |
download | Nim-ad67a46e5ddcf260281b13b79bf50afa779b234d.tar.gz |
styleCheck fixes [bugfix]
Diffstat (limited to 'lib/posix/posix_nintendoswitch.nim')
-rw-r--r-- | lib/posix/posix_nintendoswitch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/posix/posix_nintendoswitch.nim b/lib/posix/posix_nintendoswitch.nim index 892ea3370..ae0f2dcdf 100644 --- a/lib/posix/posix_nintendoswitch.nim +++ b/lib/posix/posix_nintendoswitch.nim @@ -17,7 +17,7 @@ type DIR* {.importc: "DIR", header: "<dirent.h>", incompleteStruct.} = object -const SIG_HOLD* = cast[SigHandler](2) +const SIG_HOLD* = cast[Sighandler](2) type SocketHandle* = distinct cint # The type used to represent socket descriptors @@ -218,7 +218,7 @@ type st_blocks*: Blkcnt ## Number of blocks allocated for this object. reserved: array[2, clong] - + Statvfs* {.importc: "struct statvfs", header: "<sys/statvfs.h>", final, pure.} = object ## struct statvfs |