RE: [NeoStats-Devel] [Commits] r2396 - in trunk: . autotools src
"M" <[email protected]>
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
> Author: Fish > Date: Tue Mar 22 23:01:59 2005 > --- trunk/src/confuse.c (original) > +++ trunk/src/confuse.c Tue Mar 22 23:01:59 2005 > @@ -1392,7 +1392,12 @@ > fprintf(fp, "%ld", cfg_opt_getnint(opt, index)); > break; > case CFGT_FLOAT: > +#if 0 > +/* till I can figure out a autoconf check for "long floats" > (is there such a thing?)*/ > fprintf(fp, "%lf", cfg_opt_getnfloat(opt, index)); > +#else > + fprintf(fp, "%f", cfg_opt_getnfloat(opt, index)); > +#endif Double? Mark.