posix-xprintf-functions.patch from patch #6230.
[pspp-builds.git] / src / language / data-io / print.c
index 67dfa1290aab8a1bdd8754b77632e21269500640..8ec63c4d4f2431a392bae04446c01516fee85563 100644 (file)
@@ -256,9 +256,9 @@ parse_specs (struct lexer *lexer, struct pool *tmp_pool, struct print_trns *trns
     }
 
   if (trns->record_cnt != 0 && trns->record_cnt != record)
-    msg (SW, _("Output calls for %d records but %u specified on RECORDS "
+    msg (SW, _("Output calls for %d records but %zu specified on RECORDS "
                "subcommand."),
-         record, (unsigned int) trns->record_cnt);
+         record, trns->record_cnt);
   trns->record_cnt = record;
 
   return true;