Added Levene test. Added T-TEST section to pspp.texi
[pspp-builds.git] / src / pfm-read.c
index 7d80de3f337998059062196a7d5c1302786eedc3..b587fbcafa937f3ad183df9f65d7f4b27c8a5b02 100644 (file)
@@ -62,7 +62,7 @@ static struct fh_ext_class pfm_r_class;
 
 static int 
 corrupt_msg (struct file_handle *h, const char *format,...)
-  __attribute__ ((format (printf, 2, 3)));
+     PRINTF_FORMAT (2, 3);
 
 /* Displays a corruption error. */
 static int
@@ -619,7 +619,7 @@ convert_format (struct file_handle *h, int fmt[3], struct fmt_spec *v,
 {
   if (fmt[0] < 0
       || (size_t) fmt[0] >= sizeof translate_fmt / sizeof *translate_fmt)
-    lose ((h, _("%s: Bad format specifier byte %d."), vv->name, fmt[0]));
+    lose ((h, _("%s: Bad format specifier byte (%d)."), vv->name, fmt[0]));
 
   v->type = translate_fmt[fmt[0]];
   v->w = fmt[1];