summaryrefslogtreecommitdiffstats
path: root/generic/tkFont.c
diff options
context:
space:
mode:
authordas <das>2006-12-10 05:26:42 (GMT)
committerdas <das>2006-12-10 05:26:42 (GMT)
commitb346fcd62a3fedd582eaa70e156d7d16c66b0748 (patch)
treef9a9b45b4059cbf9f4b3761ba7c900bce1b75974 /generic/tkFont.c
parentaa6a6357d7817246ce156df37f80d09099c4a432 (diff)
downloadtk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.zip
tk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.tar.gz
tk-b346fcd62a3fedd582eaa70e156d7d16c66b0748.tar.bz2
fix warning
Diffstat (limited to 'generic/tkFont.c')
-rw-r--r--generic/tkFont.c4
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;