diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2005-10-09 20:05:17 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2005-10-09 20:05:17 (GMT) |
commit | 63bc8ab8cf7635622a2f4da1feeff6a13acfd8df (patch) | |
tree | 85a5e00388fcff9f61defad95d92397ff39438f1 /generic/tclBasic.c | |
parent | 76faac0f28fe9661f23ff9e35f44df1d899420e5 (diff) | |
download | tcl-63bc8ab8cf7635622a2f4da1feeff6a13acfd8df.zip tcl-63bc8ab8cf7635622a2f4da1feeff6a13acfd8df.tar.gz tcl-63bc8ab8cf7635622a2f4da1feeff6a13acfd8df.tar.bz2 |
* generic/tclBasic.c:
* generic/tclExecute.c:
* generic/tclStrToD.c:
* generic/tclStringObj.c: initialise variables to avoid compiler
warnings ([Bug 1320818] among others).
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index b2bef10..4f61aed 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.175 2005/10/08 14:42:44 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.176 2005/10/09 20:05:17 msofer Exp $ */ #include "tclInt.h" @@ -5260,6 +5260,7 @@ ExprAbsFunc(clientData, interp, objc, objv) return TCL_ERROR; #endif } + return TCL_OK; } static int |