diff options
author | das <das> | 2006-12-10 05:26:42 (GMT) |
---|---|---|
committer | das <das> | 2006-12-10 05:26:42 (GMT) |
commit | b346fcd62a3fedd582eaa70e156d7d16c66b0748 (patch) | |
tree | f9a9b45b4059cbf9f4b3761ba7c900bce1b75974 /generic | |
parent | aa6a6357d7817246ce156df37f80d09099c4a432 (diff) | |
download | tk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.zip tk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.tar.gz tk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.tar.bz2 |
fix warning
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkFont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkFont.c b/generic/tkFont.c index 15ec180..ba286b5 100644 --- a/generic/tkFont.c +++ b/generic/tkFont.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkFont.c,v 1.29 2006/12/01 20:14:23 kennykb Exp $ + * RCS: @(#) $Id: tkFont.c,v 1.30 2006/12/10 05:26:42 das Exp $ */ #include "tkPort.h" @@ -509,7 +509,7 @@ Tk_FontObjCmd( Tcl_Obj *optPtr; Tcl_Obj *charPtr; Tcl_Obj *resultPtr; - Tcl_UniChar uniChar; + Tcl_UniChar uniChar = 0; CONST TkFontAttributes *faPtr; TkFontAttributes fa; |