summaryrefslogtreecommitdiffstats
path: root/unix/tclLoadDl.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-03-11 13:35:23 (GMT)
committernijtmans <nijtmans>2010-03-11 13:35:23 (GMT)
commitad3425f0ba4af76882183ec4bf7a07034fd77311 (patch)
tree59bd32315a34884c283ae1a2c1a5b80ce91a2e06 /unix/tclLoadDl.c
parent2c4e9fc134585c9dbbd25671018e100165ad1b63 (diff)
downloadtcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.zip
tcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.tar.gz
tcl-ad3425f0ba4af76882183ec4bf7a07034fd77311.tar.bz2
Remove unnecessary '&' decoration for function
pointers. Fix double declaration of TclNativeDupInternalRep
Diffstat (limited to 'unix/tclLoadDl.c')
-rw-r--r--unix/tclLoadDl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadDl.c b/unix/tclLoadDl.c
index 7bb1da3..3043f92 100644
--- a/unix/tclLoadDl.c
+++ b/unix/tclLoadDl.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclLoadDl.c,v 1.17 2008/04/27 22:21:33 dkf Exp $
+ * RCS: @(#) $Id: tclLoadDl.c,v 1.18 2010/03/11 13:35:25 nijtmans Exp $
*/
#include "tclInt.h"
@@ -104,7 +104,7 @@ TclpDlopen(
return TCL_ERROR;
}
- *unloadProcPtr = &TclpUnloadFile;
+ *unloadProcPtr = TclpUnloadFile;
*loadHandle = (Tcl_LoadHandle) handle;
return TCL_OK;
}