1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

(decode_one_format): Use %lu (not %d) printf formats

corresponding to unsigned long, SIZE.
This commit is contained in:
Jim Meyering
1996-05-31 00:51:48 +00:00
parent 86f7daf592
commit 53e41464fd

View File

@@ -734,7 +734,7 @@ decode_one_format (const char *s_orig, const char *s, const char **next,
|| integral_type_size[size] == NO_SIZE)
{
error (0, 0, _("invalid type string `%s';\n\
this system doesn't provide a %d-byte integral type"), s_orig, size);
this system doesn't provide a %lu-byte integral type"), s_orig, size);
return 1;
}
s = p;
@@ -847,7 +847,7 @@ this system doesn't provide a %d-byte integral type"), s_orig, size);
|| fp_type_size[size] == NO_SIZE)
{
error (0, 0, _("invalid type string `%s';\n\
this system doesn't provide a %d-byte floating point type"), s_orig, size);
this system doesn't provide a %lu-byte floating point type"), s_orig, size);
return 1;
}
s = p;