diff options
| author | nijtmans <nijtmans> | 2010-03-11 13:35:23 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-03-11 13:35:23 (GMT) |
| commit | f1cc33313ecd31b645aae3d605ba826d5dfc8703 (patch) | |
| tree | 59bd32315a34884c283ae1a2c1a5b80ce91a2e06 /win/tclWinLoad.c | |
| parent | 79f5c79ec1e6029c8cfa35577eae3be99986224f (diff) | |
| download | tcl-f1cc33313ecd31b645aae3d605ba826d5dfc8703.zip tcl-f1cc33313ecd31b645aae3d605ba826d5dfc8703.tar.gz tcl-f1cc33313ecd31b645aae3d605ba826d5dfc8703.tar.bz2 | |
Remove unnecessary '&' decoration for function
pointers.
Fix double declaration of TclNativeDupInternalRep
Diffstat (limited to 'win/tclWinLoad.c')
| -rw-r--r-- | win/tclWinLoad.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinLoad.c b/win/tclWinLoad.c index 26f50a4..fea7b85 100644 --- a/win/tclWinLoad.c +++ b/win/tclWinLoad.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: tclWinLoad.c,v 1.24 2010/02/15 22:56:19 nijtmans Exp $ + * RCS: @(#) $Id: tclWinLoad.c,v 1.25 2010/03/11 13:35:23 nijtmans Exp $ */ #include "tclWinInt.h" @@ -130,7 +130,7 @@ TclpDlopen( } return TCL_ERROR; } else { - *unloadProcPtr = &TclpUnloadFile; + *unloadProcPtr = TclpUnloadFile; } return TCL_OK; } |
