summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadOSF.c
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-08-08 10:32:39 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-08-08 10:32:39 (GMT)
commita130a8ddcf0c1ad3d5b3521fd6304e1850b60997 (patch)
tree5ac50dfaff7dde2e41e507277f70fefdbbda6be3 /unix/tclLoadOSF.c
parent6aee63effa88b49ebd875a8f1615454f842820f2 (diff)
parent801097f82faf5fefd9787952fc0ffb91c248f9ca (diff)
downloadtcl-a130a8ddcf0c1ad3d5b3521fd6304e1850b60997.zip
tcl-a130a8ddcf0c1ad3d5b3521fd6304e1850b60997.tar.gz
tcl-a130a8ddcf0c1ad3d5b3521fd6304e1850b60997.tar.bz2
merge trunk
FossilOrigin-Name: 27388707f2261df4c934c2c8b7e275db6dd2ddf8
Diffstat (limited to 'unix/tclLoadOSF.c')
-rw-r--r--unix/tclLoadOSF.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/unix/tclLoadOSF.c b/unix/tclLoadOSF.c
index 6515b89..6e76b55 100644
--- a/unix/tclLoadOSF.c
+++ b/unix/tclLoadOSF.c
@@ -35,12 +35,14 @@
#include "tclInt.h"
#include <sys/types.h>
#include <loader.h>
-
-/* Static functions defined within this file */
-static void* FindSymbol(Tcl_Interp* interp, Tcl_LoadHandle loadHandle,
- const char* symbol);
-static void UnloadFile(Tcl_LoadHandle handle);
+/*
+ * Static functions defined within this file.
+ */
+
+static void * FindSymbol(Tcl_Interp *interp,
+ Tcl_LoadHandle loadHandle, const char* symbol);
+static void UnloadFile(Tcl_LoadHandle handle);
/*
*----------------------------------------------------------------------
@@ -105,7 +107,7 @@ TclpDlopen(
if (lm == LDR_NULL_MODULE) {
Tcl_SetObjResult(interp, Tcl_ObjPrintf(
"couldn't load file \"%s\": %s",
- fileName, Tcl_PosixError(interp));
+ fileName, Tcl_PosixError(interp)));
return TCL_ERROR;
}