summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--generic/tcl.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ef2e523..1a2bc8a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,