From 7a5db30b013d13b5c0a186d74506ea447cdc6dd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20R=C3=BChsen?= Date: Fri, 20 Apr 2018 10:17:55 +0200 Subject: [PATCH] * src/iri.h: Fix C++ compile error --- src/iri.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iri.h b/src/iri.h index 4c501846..7ca34199 100644 --- a/src/iri.h +++ b/src/iri.h @@ -45,7 +45,7 @@ bool check_encoding_name (const char *encoding); const char *locale_to_utf8 (const char *str); char *idn_encode (const struct iri *i, const char *host); char *idn_decode (const char *host); -bool remote_to_utf8 (const struct iri *i, const char *str, char **new); +bool remote_to_utf8 (const struct iri *i, const char *str, char **newstr); struct iri *iri_new (void); struct iri *iri_dup (const struct iri *); void iri_free (struct iri *i);