diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-30 15:43:31 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-30 15:43:31 (GMT) |
commit | 1def2a858a53390c00a5269fd762423d67291fbf (patch) | |
tree | 623efa290a05cd56fd430ec2ca19c7c8d1695cb8 | |
parent | 034534b6ff4a141c678ef30644a30eaa272a0ef7 (diff) | |
download | tcl-1def2a858a53390c00a5269fd762423d67291fbf.zip tcl-1def2a858a53390c00a5269fd762423d67291fbf.tar.gz tcl-1def2a858a53390c00a5269fd762423d67291fbf.tar.bz2 |
* Silence warning from Sun compiler. [Bug 454374]
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | generic/tcl.h | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2001-08-30 Don Porter <dgp@users.sourceforge.net> + + * generic/tcl.h: Silence warning from Sun compiler. [Bug 454374] + 2001-08-27 Jeff Hobbs <jeffh@ActiveState.com> * doc/Encoding.3: added note that tclPlatDecls.h must be included diff --git a/generic/tcl.h b/generic/tcl.h index 570c780..9cc49d9 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.70.2.4 2001/08/28 00:12:43 hobbs Exp $ + * RCS: @(#) $Id: tcl.h,v 1.70.2.5 2001/08/30 15:43:31 dgp Exp $ */ #ifndef _TCL @@ -586,7 +586,7 @@ typedef int (Tcl_MathProc) _ANSI_ARGS_((ClientData clientData, Tcl_Interp *interp, Tcl_Value *args, Tcl_Value *resultPtr)); typedef void (Tcl_NamespaceDeleteProc) _ANSI_ARGS_((ClientData clientData)); typedef int (Tcl_ObjCmdProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, int objc, struct Tcl_Obj *CONST objv[])); + Tcl_Interp *interp, int objc, struct Tcl_Obj * CONST * objv)); typedef int (Tcl_PackageInitProc) _ANSI_ARGS_((Tcl_Interp *interp)); typedef void (Tcl_PanicProc) _ANSI_ARGS_(TCL_VARARGS(char *, format)); typedef void (Tcl_TcpAcceptProc) _ANSI_ARGS_((ClientData callbackData, |