summaryrefslogtreecommitdiffstats
path: root/generic/tclDecls.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2008-12-27 10:07:05 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2008-12-27 10:07:05 (GMT)
commita7e88f6d17b8ff68c0cb6f10840445088d5264f0 (patch)
tree895153a2581a2a0e2dc1672a972732d1f2efc3f4 /generic/tclDecls.h
parent1ea51e1fb6fb072c84c166e0831423b0c323558b (diff)
downloadtcl-a7e88f6d17b8ff68c0cb6f10840445088d5264f0.zip
tcl-a7e88f6d17b8ff68c0cb6f10840445088d5264f0.tar.gz
tcl-a7e88f6d17b8ff68c0cb6f10840445088d5264f0.tar.bz2
Fix my silly blunders. [Bug 2470237]
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r--generic/tclDecls.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h
index 74284ed..a680700 100644
--- a/generic/tclDecls.h
+++ b/generic/tclDecls.h
@@ -8,7 +8,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclDecls.h,v 1.167 2008/12/27 00:04:17 dkf Exp $
+ * RCS: @(#) $Id: tclDecls.h,v 1.168 2008/12/27 10:07:06 dkf Exp $
*/
#ifndef _TCLDECLS
@@ -3704,14 +3704,14 @@ EXTERN int Tcl_ZlibInflate (Tcl_Interp * interp, int format,
#ifndef Tcl_ZlibCRC32_TCL_DECLARED
#define Tcl_ZlibCRC32_TCL_DECLARED
/* 612 */
-EXTERN unsigned int Tcl_ZlibCRC32 (unsigned int crc, const char * buf,
- int len);
+EXTERN unsigned int Tcl_ZlibCRC32 (unsigned int crc,
+ const unsigned char * buf, int len);
#endif
#ifndef Tcl_ZlibAdler32_TCL_DECLARED
#define Tcl_ZlibAdler32_TCL_DECLARED
/* 613 */
EXTERN unsigned int Tcl_ZlibAdler32 (unsigned int adler,
- const char * buf, int len);
+ const unsigned char * buf, int len);
#endif
#ifndef Tcl_ZlibStreamInit_TCL_DECLARED
#define Tcl_ZlibStreamInit_TCL_DECLARED
@@ -4446,8 +4446,8 @@ typedef struct TclStubs {
void (*tcl_BackgroundException) (Tcl_Interp * interp, int code); /* 609 */
int (*tcl_ZlibDeflate) (Tcl_Interp * interp, int format, Tcl_Obj * data, int level, Tcl_Obj * gzipHeaderDictObj); /* 610 */
int (*tcl_ZlibInflate) (Tcl_Interp * interp, int format, Tcl_Obj * data, int buffersize, Tcl_Obj * gzipHeaderDictObj); /* 611 */
- unsigned int (*tcl_ZlibCRC32) (unsigned int crc, const char * buf, int len); /* 612 */
- unsigned int (*tcl_ZlibAdler32) (unsigned int adler, const char * buf, int len); /* 613 */
+ unsigned int (*tcl_ZlibCRC32) (unsigned int crc, const unsigned char * buf, int len); /* 612 */
+ unsigned int (*tcl_ZlibAdler32) (unsigned int adler, const unsigned char * buf, int len); /* 613 */
int (*tcl_ZlibStreamInit) (Tcl_Interp * interp, int mode, int format, int level, Tcl_Obj * dictObj, Tcl_ZlibStream * zshandle); /* 614 */
Tcl_Obj * (*tcl_ZlibStreamGetCommandName) (Tcl_ZlibStream zshandle); /* 615 */
int (*tcl_ZlibStreamEof) (Tcl_ZlibStream zshandle); /* 616 */