diff options
author | nijtmans <nijtmans@noemail.net> | 2010-03-11 13:35:23 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-03-11 13:35:23 (GMT) |
commit | 4990cbd0a2c537b39e2510604d891116d8975edf (patch) | |
tree | 59bd32315a34884c283ae1a2c1a5b80ce91a2e06 /unix/tclLoadShl.c | |
parent | 7e291d5fd5ce5ea97de5cced0c7d40d203e4952c (diff) | |
download | tcl-4990cbd0a2c537b39e2510604d891116d8975edf.zip tcl-4990cbd0a2c537b39e2510604d891116d8975edf.tar.gz tcl-4990cbd0a2c537b39e2510604d891116d8975edf.tar.bz2 |
Remove unnecessary '&' decoration for function
pointers.
Fix double declaration of TclNativeDupInternalRep
FossilOrigin-Name: bb4a12448bcecb18222b82374565ecea83c07bc1
Diffstat (limited to 'unix/tclLoadShl.c')
-rw-r--r-- | unix/tclLoadShl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadShl.c b/unix/tclLoadShl.c index a3a3fc5..b989d7e 100644 --- a/unix/tclLoadShl.c +++ b/unix/tclLoadShl.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclLoadShl.c,v 1.17 2008/04/27 22:21:34 dkf Exp $ + * RCS: @(#) $Id: tclLoadShl.c,v 1.18 2010/03/11 13:35:25 nijtmans Exp $ */ #include <dl.h> @@ -98,7 +98,7 @@ TclpDlopen( return TCL_ERROR; } *loadHandle = (Tcl_LoadHandle) handle; - *unloadProcPtr = &TclpUnloadFile; + *unloadProcPtr = TclpUnloadFile; return TCL_OK; } |