summaryrefslogtreecommitdiffstats
path: root/generic/tclZlib.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2009-11-18 21:59:49 (GMT)
committernijtmans <nijtmans@noemail.net>2009-11-18 21:59:49 (GMT)
commit59939eb7b2f44c788b4924f73c68ce4aa0713a69 (patch)
treeddefc8b4f539a5dd99629207908dae49d8e515db /generic/tclZlib.c
parent52fb8cfe24d82c4f25c49067b2cdd2918444cf86 (diff)
downloadtcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.zip
tcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.tar.gz
tcl-59939eb7b2f44c788b4924f73c68ce4aa0713a69.tar.bz2
Eliminate various gcc warnings (in -Wextra mode)
FossilOrigin-Name: 8780faf488c79569934af0cd318800d73489137d
Diffstat (limited to 'generic/tclZlib.c')
-rw-r--r--generic/tclZlib.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclZlib.c b/generic/tclZlib.c
index 7f5ff7b..2ae12c0 100644
--- a/generic/tclZlib.c
+++ b/generic/tclZlib.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: tclZlib.c,v 1.31 2009/10/29 08:08:33 dkf Exp $
+ * RCS: @(#) $Id: tclZlib.c,v 1.32 2009/11/18 21:59:51 nijtmans Exp $
*/
#include "tclInt.h"
@@ -189,7 +189,9 @@ static const Tcl_ChannelType zlibChannelType = {
ZlibTransformBlockMode,
NULL, /* flushProc */
ZlibTransformHandler,
- NULL /* wideSeekProc */
+ NULL, /* wideSeekProc */
+ NULL,
+ NULL
};
/*