summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDyld.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:35:14 (GMT)
commit14e9a4e0bda3c86ac11baf3c11f900a5837ea70a (patch)
treeea245cdd3ace1d0ea075a51e59d0b5044fc86bf2 /unix/tclLoadDyld.c
parent1719e80d015d40d514bb9209a921525b2d667d9c (diff)
downloadtcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.zip
tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.gz
tcl-14e9a4e0bda3c86ac11baf3c11f900a5837ea70a.tar.bz2
Space before tab is an extremely unlikely to be correct indentation pattern
Diffstat (limited to 'unix/tclLoadDyld.c')
-rw-r--r--unix/tclLoadDyld.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclLoadDyld.c b/unix/tclLoadDyld.c
index 54290ec..5b1062e 100644
--- a/unix/tclLoadDyld.c
+++ b/unix/tclLoadDyld.c
@@ -197,14 +197,14 @@ TclpDlopen(
*/
if (flags & TCL_LOAD_GLOBAL) {
- dlopenflags |= RTLD_GLOBAL;
+ dlopenflags |= RTLD_GLOBAL;
} else {
- dlopenflags |= RTLD_LOCAL;
+ dlopenflags |= RTLD_LOCAL;
}
if (flags & TCL_LOAD_LAZY) {
- dlopenflags |= RTLD_LAZY;
+ dlopenflags |= RTLD_LAZY;
} else {
- dlopenflags |= RTLD_NOW;
+ dlopenflags |= RTLD_NOW;
}
dlHandle = dlopen(nativePath, dlopenflags);
if (!dlHandle) {