diff options
author | das <das> | 2006-03-16 09:56:46 (GMT) |
---|---|---|
committer | das <das> | 2006-03-16 09:56:46 (GMT) |
commit | 50eba7c70e2d665ecb30510700338e784228439b (patch) | |
tree | 05fb122c0fa3ef8aea6ab2f4349a80a3e4070855 /generic/tclObj.c | |
parent | 5bd92b680a07ebd18b890f26fa905f63c0652c36 (diff) | |
download | tcl-50eba7c70e2d665ecb30510700338e784228439b.zip tcl-50eba7c70e2d665ecb30510700338e784228439b.tar.gz tcl-50eba7c70e2d665ecb30510700338e784228439b.tar.bz2 |
missing statics revealed by 'make checkexports'
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 2f59828..0522c17 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -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: tclObj.c,v 1.105 2006/03/10 17:05:06 dgp Exp $ + * RCS: @(#) $Id: tclObj.c,v 1.106 2006/03/16 09:56:46 das Exp $ */ #include "tclInt.h" @@ -214,7 +214,7 @@ static int SetCmdNameFromAny(Tcl_Interp *interp, Tcl_Obj *objPtr); * implementations. */ -Tcl_ObjType oldBooleanType = { +static Tcl_ObjType oldBooleanType = { "boolean", /* name */ NULL, /* freeIntRepProc */ NULL, /* dupIntRepProc */ |