summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadNext.c
diff options
context:
space:
mode:
Diffstat (limited to 'unix/tclLoadNext.c')
-rw-r--r--unix/tclLoadNext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/tclLoadNext.c b/unix/tclLoadNext.c
index de185fb..fc10162 100644
--- a/unix/tclLoadNext.c
+++ b/unix/tclLoadNext.c
@@ -61,7 +61,7 @@ TclpDlopen(
const char *native;
int result = 1;
- NXStream *errorStream = NXOpenMemory(0,0,NX_READWRITE);
+ NXStream *errorStream = NXOpenMemory(0, 0, NX_READWRITE);
fileName = TclGetString(pathPtr);
@@ -72,7 +72,7 @@ TclpDlopen(
*/
native = Tcl_FSGetNativePath(pathPtr);
- files = {native,NULL};
+ files = {native, NULL};
result = rld_load(errorStream, &header, files, NULL);
@@ -90,7 +90,7 @@ TclpDlopen(
return TCL_ERROR;
}
native = Tcl_DStringValue(&ds);
- files = {native,NULL};
+ files = {native, NULL};
result = rld_load(errorStream, &header, files, NULL);
Tcl_DStringFree(&ds);
}