On Thu, Dec 15, 2011 at 12:13:51PM -0400, Ben Armstrong wrote:
> Hi,
>
> If you know how to fix this, I'd like to get it patched and uploaded
> ASAP. Looks like the compiler may just be pickier than it used to be?
Here's a fix:
$ cvs diff src/tuxpaint-config2.cxx
Index: src/tuxpaint-config2.cxx
===================================================================
RCS file: /cvsroot/tuxpaint/tuxpaint-config/src/tuxpaint-config2.cxx,v
retrieving revision 1.106
diff -r1.106 tuxpaint-config2.cxx
1387d1386
< char question[256];
1401,1403c1400,1401
< snprintf(question, sizeof(question), gettext("Apply changes you made to %s?"), user);
< if (fl_choice(gettext(question),
< gettext("No"), gettext("Yes"), NULL))
---
> if (fl_choice(gettext("Apply changes you made to %s?"),
> gettext("No"), gettext("Yes"), NULL, user))
Helpful?
-bill!
|