svn commit: r281591 - head/bin/csh

Tijl Coosemans tijl at FreeBSD.org
Thu Apr 16 07:17:01 UTC 2015


Author: tijl
Date: Thu Apr 16 07:17:00 2015
New Revision: 281591
URL: https://svnweb.freebsd.org/changeset/base/281591

Log:
  Fix build after r281550 when WITHOUT_ICONV is defined.
  
  Reported by:	adrian
  MFC after:	2 weeks

Modified:
  head/bin/csh/iconv_stub.h

Modified: head/bin/csh/iconv_stub.h
==============================================================================
--- head/bin/csh/iconv_stub.h	Thu Apr 16 06:23:58 2015	(r281590)
+++ head/bin/csh/iconv_stub.h	Thu Apr 16 07:17:00 2015	(r281591)
@@ -30,7 +30,7 @@
 #define _ICONV_H_
 
 typedef void *iconv_t;
-typedef size_t dl_iconv_t(iconv_t, const char **, size_t *, char **, size_t *);
+typedef size_t dl_iconv_t(iconv_t, char **, size_t *, char **, size_t *);
 typedef int dl_iconv_close_t(iconv_t);
 
 extern iconv_t dl_iconv_open(const char *, const char *);


More information about the svn-src-all mailing list