From: Bruno Haible Date: Tue, 8 Feb 2005 11:28:40 +0000 (+0000) Subject: Avoid compiler warning. X-Git-Tag: v0.14.2~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=57f52b79b76a892c6516ba1a10ac9ee43eb73746;p=thirdparty%2Fgettext.git Avoid compiler warning. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 670c2f913..b5cc9991a 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,8 @@ +2005-02-08 Bruno Haible + + * msginit.c (get_user_email): Cast _() to 'char *', to avoid compiler + warning. + 2005-02-07 Bruno Haible Make the tools work in the tr_TR locale. diff --git a/gettext-tools/src/msginit.c b/gettext-tools/src/msginit.c index 97926ebbf..1d9703551 100644 --- a/gettext-tools/src/msginit.c +++ b/gettext-tools/src/msginit.c @@ -1178,7 +1178,7 @@ get_user_email () /* Ask the user for his email address. */ argv[0] = "/bin/sh"; argv[1] = (char *) prog; - argv[2] = _("\ + argv[2] = (char *) _("\ The new message catalog should contain your email address, so that users can\n\ give you feedback about the translations, and so that maintainers can contact\n\ you in case of unexpected technical problems.\n");