X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fdata-in.c;h=3a15f89612bc5048a1e7d2c13c888e8c98f9d3d5;hb=ca1feaeed4961242699d0b7ba61def0c58515ddd;hp=95da2eed33d4aae4800570894c5c8305ec271dec;hpb=fcb9e49b2a2d57af7c001ae5d2eda9ac443ba36b;p=pspp-builds.git diff --git a/src/data-in.c b/src/data-in.c index 95da2eed..3a15f896 100644 --- a/src/data-in.c +++ b/src/data-in.c @@ -18,6 +18,7 @@ 02111-1307, USA. */ #include +#include "data-in.h" #include #include #include @@ -25,7 +26,6 @@ #include #include #include -#include "data-in.h" #include "error.h" #include "getline.h" #include "julcal/julcal.h" @@ -42,7 +42,7 @@ /* Specialized error routine. */ static void dls_error (const struct data_in *, const char *format, ...) - __attribute__ ((format (printf, 2, 3))); + PRINTF_FORMAT (2, 3); static void dls_error (const struct data_in *i, const char *format, ...) @@ -140,6 +140,8 @@ parse_numeric (struct data_in *i) if (*i->s == '-' || *i->s == '+') i->s++; } + else + sign = 1; if (type != FMT_DOT) { @@ -381,9 +383,10 @@ parse_Z (struct data_in *i) if (!warned) { - msg (MW, _("Quality of zoned decimal (Z) input format code is " - "suspect. Check your results three times, report bugs " - "to author.")); + msg (MW, + _("Quality of zoned decimal (Z) input format code is " + "suspect. Check your results three times. Report bugs " + "to %s."),PACKAGE_BUGREPORT); warned = 1; } }