diff options
author | Araq <rumpf_a@web.de> | 2019-07-19 17:25:04 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-07-19 17:25:04 +0200 |
commit | 5a020d641dde24b1af4705baf5bf7c2517d63b97 (patch) | |
tree | c3d7eb954e8bc29cc71e62513aa72eba062616c9 /lib/system | |
parent | 313cc337f27ed6280b1021e7c1d2afb681044b94 (diff) | |
download | Nim-5a020d641dde24b1af4705baf5bf7c2517d63b97.tar.gz |
style improvements; fixes #11774
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/threadlocalstorage.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/threadlocalstorage.nim b/lib/system/threadlocalstorage.nim index 6ab038a27..d384b954b 100644 --- a/lib/system/threadlocalstorage.nim +++ b/lib/system/threadlocalstorage.nim @@ -108,10 +108,10 @@ elif defined(genode): else: when not (defined(macosx) or defined(haiku)): - {.passL: "-pthread".} + {.passl: "-pthread".} when not defined(haiku): - {.passC: "-pthread".} + {.passc: "-pthread".} const schedh = "#define _GNU_SOURCE\n#include <sched.h>" |