summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2019-07-19 17:25:04 +0200
committerAraq <rumpf_a@web.de>2019-07-19 17:25:04 +0200
commit5a020d641dde24b1af4705baf5bf7c2517d63b97 (patch)
treec3d7eb954e8bc29cc71e62513aa72eba062616c9 /lib/system
parent313cc337f27ed6280b1021e7c1d2afb681044b94 (diff)
downloadNim-5a020d641dde24b1af4705baf5bf7c2517d63b97.tar.gz
style improvements; fixes #11774
Diffstat (limited to 'lib/system')
-rw-r--r--lib/system/threadlocalstorage.nim4
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>"