Fix use of size_t in printf formats. Patch #5727.
[pspp-builds.git] / src / language / data-io / placement-parser.c
index 074c5693312b00e6a3d5406ed4a69d322247b8c0..81e3fee8661a9c2f7b2dc69934e7a325c15177ef 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 2006 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -118,8 +117,8 @@ fixed_parse_columns (struct lexer *lexer, struct pool *pool, size_t var_cnt, boo
   if ((lc - fc + 1) % var_cnt)
     {
       msg (SE, _("The %d columns %d-%d "
-                "can't be evenly divided into %d fields."),
-          lc - fc + 1, fc, lc, var_cnt);
+                "can't be evenly divided into %u fields."),
+          lc - fc + 1, fc, lc, (unsigned int) var_cnt);
       return false;
     }