[email protected] wrote: > Author: mike > Date: 2007-05-19 20:01:06 -0400 (Sat, 19 May 2007) > New Revision: 5845 > Log: > Fix all compiler warnings from various build systems. > > Fix vsnprintf() implementation to properly handle long and long long ints. >
... There's a typo in: > Modified: branches/branch-1.1/src/vsnprintf.c > =================================================================== > --- branches/branch-1.1/src/vsnprintf.c 2007-05-18 19:04:14 UTC (rev > 5844) > +++ branches/branch-1.1/src/vsnprintf.c 2007-05-20 00:01:06 UTC (rev > 5845) > @@ -3,7 +3,7 @@ ... > @@ -159,7 +161,15 @@ > case 'x' : > if ((width + 2) > sizeof(temp)) break; > > - sprintf(temp, tformat, va_arg(ap, int)); > +#ifdef HAVE_LONg_LONG ------------------^ should read "HAVE_LONG_LONG" ... _______________________________________________ fltk-dev mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-dev
