From: "James P. Howard, II" <jh@jameshoward.us>
To: Jeff King <peff@peff.net>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] Cast &cp to eliminate a compile-time warning on FreeBSD 8-STABLE.
Date: Sat, 5 Dec 2009 18:03:50 -0500 [thread overview]
Message-ID: <20091205230350.GA3810@thermopylae.local> (raw)
In-Reply-To: <20091205161405.GA9272@sigill.intra.peff.net>
On Sat, Dec 05, 2009 at 11:14:05AM -0500, Jeff King wrote:
> On Fri, Dec 04, 2009 at 06:12:02PM -0500, James P. Howard, II wrote:
>
> > --- a/utf8.c
> > +++ b/utf8.c
> > @@ -449,7 +449,7 @@ char *reencode_string(const char *in, const char *out_encoding, const char *in_e
> > cp = (iconv_ibp)in;
> >
> > while (1) {
> > - size_t cnt = iconv(conv, &cp, &insz, &outpos, &outsz);
> > + size_t cnt = iconv(conv, (const char **)&cp, &insz, &outpos, &outsz);
> >
> > if (cnt == -1) {
> > size_t sofar;
>
> Aren't you now introducing a warning for all of the other platforms
> which take a "char **"? Should you instead just be building with
> OLD_ICONV=Yes on your platform? See commit fd547a9 for details.
Yes, and it was brought to my attention within 10 minutes of my first
post.
James
--
James P. Howard, II, MPA MBCS
jh@jameshoward.us
prev parent reply other threads:[~2009-12-05 23:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-04 23:12 [PATCH] Cast &cp to eliminate a compile-time warning on FreeBSD 8-STABLE James P. Howard, II
2009-12-05 16:14 ` Jeff King
2009-12-05 23:03 ` James P. Howard, II [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091205230350.GA3810@thermopylae.local \
--to=jh@jameshoward.us \
--cc=git@vger.kernel.org \
--cc=peff@peff.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox