diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-20 13:49:02 (GMT) |
| commit | ae22ee577e1296427b927dda75f49560f6256c60 (patch) | |
| tree | 41badbabc8140d865699b5f639cd4c53edbe3851 /unix/tclLoadDl.c | |
| parent | a72c1f969cba896ca61001393f0f7b74fb52e194 (diff) | |
| parent | a9b046b5bd7c666a406a17cbb0d86a2842091bac (diff) | |
| download | tcl-ae22ee577e1296427b927dda75f49560f6256c60.zip tcl-ae22ee577e1296427b927dda75f49560f6256c60.tar.gz tcl-ae22ee577e1296427b927dda75f49560f6256c60.tar.bz2 | |
Few more spacing/formatting tweaks
Diffstat (limited to 'unix/tclLoadDl.c')
| -rw-r--r-- | unix/tclLoadDl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c index ee92318..23565c5 100644 --- a/unix/tclLoadDl.c +++ b/unix/tclLoadDl.c @@ -172,7 +172,7 @@ FindSymbol( Tcl_DString newName, ds; /* Buffers for converting the name to * system encoding and prepending an * underscore*/ - void *handle = (void *) loadHandle->clientData; + void *handle = loadHandle->clientData; /* Native handle to the loaded library */ void *proc; /* Address corresponding to the resolved * symbol */ @@ -232,7 +232,7 @@ FindSymbol( Tcl_SetObjResult(interp, Tcl_ObjPrintf( "cannot find symbol \"%s\": %s", symbol, errorStr)); Tcl_SetErrorCode(interp, "TCL", "LOOKUP", "LOAD_SYMBOL", symbol, - (void *)NULL); + (char *)NULL); } } return proc; |
