aboutsummaryrefslogtreecommitdiff
path: root/coreutils/dd.c
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-01-31 12:06:57 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2006-01-31 12:06:57 +0000
commit57545c810a1d0e0783b71d1ba74af45063e2fa42 (patch)
treea992ea502ffa824f3ed17e160af73e1bbfb95879 /coreutils/dd.c
parent4d57926bd3197a2d56267af1417189823a7ae873 (diff)
downloadbusybox-57545c810a1d0e0783b71d1ba74af45063e2fa42.tar.gz
avoid signed<->unsigned warning
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r--coreutils/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c
index 9a149e24a..cba90857f 100644
--- a/coreutils/dd.c
+++ b/coreutils/dd.c
@@ -167,7 +167,7 @@ int dd_main(int argc, char **argv)
if (n == 0) {
break;
}
- if (n == bs) {
+ if ((size_t)n == bs) {
in_full++;
} else {
in_part++;
@@ -180,7 +180,7 @@ int dd_main(int argc, char **argv)
if (n < 0) {
bb_perror_msg_and_die("%s", outfile);
}
- if (n == bs) {
+ if ((size_t)n == bs) {
out_full++;
} else {
out_part++;