diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2003-05-23 00:35:29 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2003-05-23 00:35:29 (GMT) |
commit | 84c49270ec5f818062c3e321914a33a6132bb50d (patch) | |
tree | 21c5c8a9b63fc0702a33074294c0303480c0929c | |
parent | e9c149414550410e21617ad46779b78328fb8347 (diff) | |
download | tcl-84c49270ec5f818062c3e321914a33a6132bb50d.zip tcl-84c49270ec5f818062c3e321914a33a6132bb50d.tar.gz tcl-84c49270ec5f818062c3e321914a33a6132bb50d.tar.bz2 |
Fixed type error.
-rw-r--r-- | doc/Encoding.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Encoding.3 b/doc/Encoding.3 index 769a059..a4fc94f 100644 --- a/doc/Encoding.3 +++ b/doc/Encoding.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Encoding.3,v 1.11 2002/07/01 18:24:39 jenglish Exp $ +'\" RCS: @(#) $Id: Encoding.3,v 1.12 2003/05/23 00:35:29 patthoyts Exp $ '\" .so man.macros .TH Tcl_GetEncoding 3 "8.1" Tcl "Tcl Library Procedures" @@ -342,7 +342,7 @@ typedef int Tcl_EncodingConvertProc( CONST char *\fIsrc\fR, int \fIsrcLen\fR, int \fIflags\fR, - Tcl_Encoding *\fIstatePtr\fR, + Tcl_EncodingState *\fIstatePtr\fR, char *\fIdst\fR, int \fIdstLen\fR, int *\fIsrcReadPtr\fR, |