summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDl.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)
commitcd72d108bf14caa354d011a2ce41426ea011da2a (patch)
treeea245cdd3ace1d0ea075a51e59d0b5044fc86bf2 /unix/tclLoadDl.c
parentf40df819ae9708d22caccabb9f6a209739449872 (diff)
downloadtcl-cd72d108bf14caa354d011a2ce41426ea011da2a.zip
tcl-cd72d108bf14caa354d011a2ce41426ea011da2a.tar.gz
tcl-cd72d108bf14caa354d011a2ce41426ea011da2a.tar.bz2
Space before tab is an extremely unlikely to be correct indentation pattern
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r--unix/tclLoadDl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index 23565c5..07bbc16 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -88,14 +88,14 @@ TclpDlopen(
* Use (RTLD_NOW|RTLD_LOCAL) as default, see [Bug #3216070]
*/
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;
}
handle = dlopen(native, dlopenflags);
if (handle == NULL) {