From 969dfbc7f3b75d421812626472d2c9543c018293 Mon Sep 17 00:00:00 2001 From: Tijl Coosemans Date: Thu, 16 Apr 2015 07:17:00 +0000 Subject: [PATCH] Fix build after r281550 when WITHOUT_ICONV is defined. Reported by: adrian MFC after: 2 weeks --- bin/csh/iconv_stub.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/csh/iconv_stub.h b/bin/csh/iconv_stub.h index 89e9d0db59ac..a3e069a06e31 100644 --- a/bin/csh/iconv_stub.h +++ b/bin/csh/iconv_stub.h @@ -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 *);