aboutsummaryrefslogtreecommitdiff
path: root/bin/dd
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2003-03-15 07:56:59 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2003-03-15 07:56:59 +0000
commit024ae00499c710ecfd803a24d8acef6197866b6e (patch)
tree52ec3e7bc937c469ca3f397191ca6c2929cd0b4f /bin/dd
parent5b54b0891a09ca82d08e652527d1c8b531489033 (diff)
downloadsrc-024ae00499c710ecfd803a24d8acef6197866b6e.tar.gz
src-024ae00499c710ecfd803a24d8acef6197866b6e.zip
Notes
Diffstat (limited to 'bin/dd')
-rw-r--r--bin/dd/args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dd/args.c b/bin/dd/args.c
index 9d2aa6a35341..7e66b7fd96aa 100644
--- a/bin/dd/args.c
+++ b/bin/dd/args.c
@@ -189,7 +189,7 @@ f_bs(char *arg)
res = get_num(arg);
if (res < 1 || res > SSIZE_MAX)
- errx(1, "bs must be between 1 and %d", SSIZE_MAX);
+ errx(1, "bs must be between 1 and %zd", SSIZE_MAX);
in.dbsz = out.dbsz = (size_t)res;
}
@@ -200,7 +200,7 @@ f_cbs(char *arg)
res = get_num(arg);
if (res < 1 || res > SSIZE_MAX)
- errx(1, "cbs must be between 1 and %d", SSIZE_MAX);
+ errx(1, "cbs must be between 1 and %zd", SSIZE_MAX);
cbsz = (size_t)res;
}