diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-08-08 10:32:39 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-08-08 10:32:39 (GMT) |
| commit | 5ad5db44171a6ac5e6de273b04687063616ed1af (patch) | |
| tree | 5ac50dfaff7dde2e41e507277f70fefdbbda6be3 /unix/tclLoadOSF.c | |
| parent | 590f90dfb94a3838bb07b37b552b4ed1cb854918 (diff) | |
| parent | bc8263307e4cfa4064e128e4674e08e1a2f8000d (diff) | |
| download | tcl-5ad5db44171a6ac5e6de273b04687063616ed1af.zip tcl-5ad5db44171a6ac5e6de273b04687063616ed1af.tar.gz tcl-5ad5db44171a6ac5e6de273b04687063616ed1af.tar.bz2 | |
merge trunk
Diffstat (limited to 'unix/tclLoadOSF.c')
| -rw-r--r-- | unix/tclLoadOSF.c | 14 |
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; } |
