You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2003/04/24 10:03:59 UTC

cvs commit: apr-iconv/lib iconv.c

jerenkrantz    2003/04/24 01:03:57

  Modified:    lib      iconv.c
  Log:
  The header declares that apr_iconv_t should be a primitive not a pointer.
  Since iconv_close does the same thing, assume the header file is right.
  
  Revision  Changes    Path
  1.8       +1 -1      apr-iconv/lib/iconv.c
  
  Index: iconv.c
  ===================================================================
  RCS file: /home/cvs/apr-iconv/lib/iconv.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -u -r1.7 -r1.8
  --- iconv.c	10 Jan 2003 15:14:50 -0000	1.7
  +++ iconv.c	24 Apr 2003 08:03:57 -0000	1.8
  @@ -100,7 +100,7 @@
   }
   
   API_DECLARE(apr_status_t)
  -apr_iconv_close(apr_iconv_t *cd, apr_pool_t *ctx)
  +apr_iconv_close(apr_iconv_t cd, apr_pool_t *ctx)
   {
   	struct iconv_converter *icp = (struct iconv_converter *)cd;
   	int error = 0;