summaryrefslogtreecommitdiffstats
path: root/generic/tclOOMethod.c
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2008-08-23 18:53:09 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2008-08-23 18:53:09 (GMT)
commit4f50d303e2352deed7b6020a08a095466f6306b8 (patch)
tree9dd27e42ded2cc1cc95c6bd3f4779d4c77bbabc0 /generic/tclOOMethod.c
parent8079e10d030cf672bc00e73d705afe52452fae5e (diff)
downloadtcl-4f50d303e2352deed7b6020a08a095466f6306b8.zip
tcl-4f50d303e2352deed7b6020a08a095466f6306b8.tar.gz
tcl-4f50d303e2352deed7b6020a08a095466f6306b8.tar.bz2
* generic/tclBasic.c: Removed unused var; fixed function
* generic/tclOOInt.h: pointer declarations (why did gcc start * generic/tclOOMethod.c: complaining all of a sudden?) * generic/tclProc.c:
Diffstat (limited to 'generic/tclOOMethod.c')
-rw-r--r--generic/tclOOMethod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclOOMethod.c b/generic/tclOOMethod.c
index 67d67b5..75aef73 100644
--- a/generic/tclOOMethod.c
+++ b/generic/tclOOMethod.c
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclOOMethod.c,v 1.16 2008/08/21 10:36:57 dkf Exp $
+ * RCS: @(#) $Id: tclOOMethod.c,v 1.17 2008/08/23 18:53:12 msofer Exp $
*/
#ifdef HAVE_CONFIG_H
@@ -37,7 +37,7 @@ struct PNI {
typedef struct {
CallFrame *framePtr; /* Reference to the call frame itself (it's
* actually allocated on the Tcl stack). */
- ProcErrorProc errProc; /* The error handler for the body. */
+ ProcErrorProc *errProc; /* The error handler for the body. */
Tcl_Obj *nameObj; /* The "name" of the command. */
Command cmd; /* The command structure. Mostly bogus. */
ExtraFrameInfo efi; /* Extra information used for [info frame]. */