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 /unix/tclLoadNext.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 'unix/tclLoadNext.c')
| -rw-r--r-- | unix/tclLoadNext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclLoadNext.c b/unix/tclLoadNext.c index 4168ebb..5b66f4e 100644 --- a/unix/tclLoadNext.c +++ b/unix/tclLoadNext.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: tclLoadNext.c,v 1.14 2008/04/27 22:21:34 dkf Exp $ + * RCS: @(#) $Id: tclLoadNext.c,v 1.15 2010/03/11 13:35:25 nijtmans Exp $ */ #include "tclInt.h" @@ -96,7 +96,7 @@ TclpDlopen( NXCloseMemory(errorStream, NX_FREEBUFFER); *loadHandle = (Tcl_LoadHandle)1; /* A dummy non-NULL value */ - *unloadProcPtr = &TclpUnloadFile; + *unloadProcPtr = TclpUnloadFile; return TCL_OK; } |
