[PATCH] Fix example in charset.texi

Jakub Jelinek jakub@redhat.com
Tue Jul 22 14:50:00 GMT 2003


On Tue, Jul 22, 2003 at 09:33:17AM -0500, Art Haas wrote:
> Hi.
> 
> The example function returns the wrong variable. 'wcp' is the pointer
> from malloc(), 'result' points at the end of the string.

I think it would be better to s/\*result++/*wcp++/ instead, so that
result describes the result.

> 2003-07-21  Art Haas  <ahaas@airmail.net>
> 
> 	* charset.texi: Fix example to return correct variable.
> 
> Index: manual/charset.texi
> ===================================================================
> RCS file: /cvs/glibc/libc/manual/charset.texi,v
> retrieving revision 1.37
> diff -u -u -r1.37 charset.texi
> --- manual/charset.texi	30 Jun 2002 03:35:20 -0000	1.37
> +++ manual/charset.texi	22 Jul 2003 14:30:22 -0000
> @@ -700,7 +700,7 @@
>        len -= nbytes;
>        s += nbytes;
>      @}
> -  return result;
> +  return wcp;
>  @}
>  @end smallexample
>  

	Jakub



More information about the Libc-alpha mailing list