diff options
author | nijtmans <nijtmans> | 2009-08-02 21:40:16 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2009-08-02 21:40:16 (GMT) |
commit | 08a5c69704132511cb35781483e60ef2e5e534f7 (patch) | |
tree | 7a1b6fcc8666e39d05f77ebe57d7307be060e470 /win/tkWinDraw.c | |
parent | f52a66c46958afc32b7e66a2cf5f8861d6b241f4 (diff) | |
download | tk-08a5c69704132511cb35781483e60ef2e5e534f7.zip tk-08a5c69704132511cb35781483e60ef2e5e534f7.tar.gz tk-08a5c69704132511cb35781483e60ef2e5e534f7.tar.bz2 |
eliminate various gcc and msvc compiler warnings
Diffstat (limited to 'win/tkWinDraw.c')
-rw-r--r-- | win/tkWinDraw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinDraw.c b/win/tkWinDraw.c index 9d1a7cd..edb804c 100644 --- a/win/tkWinDraw.c +++ b/win/tkWinDraw.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: tkWinDraw.c,v 1.23 2008/11/22 20:05:32 patthoyts Exp $ + * RCS: @(#) $Id: tkWinDraw.c,v 1.24 2009/08/02 21:40:16 nijtmans Exp $ */ #include "tkWinInt.h" @@ -745,7 +745,7 @@ RenderObject( HPEN pen, WinDrawFunc func) { - RECT rect; + RECT rect = {0,0,0,0}; HPEN oldPen; HBRUSH oldBrush; POINT *winPoints = ConvertPoints(points, npoints, mode, &rect); |