summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDl.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-12-04 17:51:43 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-12-04 17:51:43 (GMT)
commite4eeed0516b806c6a7b336a9853ac45403475b78 (patch)
tree5a475fc39c45ae59ff9cba30b0512c50d4e15eda /unix/tclLoadDl.c
parent8719276e695459501b0b2259b8403b9e3f19cce1 (diff)
downloadtcl-e4eeed0516b806c6a7b336a9853ac45403475b78.zip
tcl-e4eeed0516b806c6a7b336a9853ac45403475b78.tar.gz
tcl-e4eeed0516b806c6a7b336a9853ac45403475b78.tar.bz2
Indenting
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 f0eab5c..14c4327 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) {