diff options
author | nijtmans <nijtmans@noemail.net> | 2010-01-18 20:43:38 (GMT) |
---|---|---|
committer | nijtmans <nijtmans@noemail.net> | 2010-01-18 20:43:38 (GMT) |
commit | e12355273fd3be0f6f447e7fdd7307e6e4a318bc (patch) | |
tree | 765c9b523ea7ef7739325a073f0de02033da1d1d /generic/tkImgGIF.c | |
parent | 535cdf32070cf1421a83f0cad4e482c0f09a381d (diff) | |
download | tk-e12355273fd3be0f6f447e7fdd7307e6e4a318bc.zip tk-e12355273fd3be0f6f447e7fdd7307e6e4a318bc.tar.gz tk-e12355273fd3be0f6f447e7fdd7307e6e4a318bc.tar.bz2 |
fix more gcc warnings: missing initializer
Apply patch [#2932808]: Canvas items
not updating on widget state change
FossilOrigin-Name: 2f69e1bce26ca36b0ad60946c5d2d5ed4e2c5f05
Diffstat (limited to 'generic/tkImgGIF.c')
-rw-r--r-- | generic/tkImgGIF.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tkImgGIF.c b/generic/tkImgGIF.c index 0d130f8..e2c943b 100644 --- a/generic/tkImgGIF.c +++ b/generic/tkImgGIF.c @@ -32,7 +32,7 @@ * This file also contains code from miGIF. See lower down in file for the * applicable copyright notice for that portion. * - * RCS: @(#) $Id: tkImgGIF.c,v 1.45 2008/10/17 23:18:37 nijtmans Exp $ + * RCS: @(#) $Id: tkImgGIF.c,v 1.46 2010/01/18 20:43:38 nijtmans Exp $ */ #include "tkInt.h" @@ -141,6 +141,7 @@ Tk_PhotoImageFormat tkImgFmtGIF = { StringReadGIF, /* stringReadProc */ FileWriteGIF, /* fileWriteProc */ NULL, /* stringWriteProc */ + NULL }; #define INTERLACE 0x40 |