diff options
author | Wayne Davison <wayned@samba.org> | 2008-07-17 07:37:31 -0700 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2008-07-17 07:37:31 -0700 |
commit | 6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3 (patch) | |
tree | 42baf860a22de3fe37b6536842189262ea9bd051 /sender.c | |
parent | 97dde6b6200aa0a3333e4f821e24dd5f0f91ec75 (diff) | |
download | android_external_rsync-6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3.tar.gz android_external_rsync-6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3.tar.bz2 android_external_rsync-6d56efa6ea66afa2e6f4eb79d9dd5f3b54b723c3.zip |
Changed human_num() to big_num() with an extra arg so that it can
be used in place of all %.0f output idioms.
Diffstat (limited to 'sender.c')
-rw-r--r-- | sender.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -70,8 +70,8 @@ static struct sum_struct *receive_sums(int f) s->sums = NULL; if (DEBUG_GTE(CHKSUM, 3)) { - rprintf(FINFO, "count=%.0f n=%ld rem=%ld\n", - (double)s->count, (long)s->blength, (long)s->remainder); + rprintf(FINFO, "count=%s n=%ld rem=%ld\n", + big_num(s->count, 0), (long)s->blength, (long)s->remainder); } if (append_mode > 0) { @@ -105,8 +105,8 @@ static struct sum_struct *receive_sums(int f) if (DEBUG_GTE(CHKSUM, 3)) { rprintf(FINFO, - "chunk[%d] len=%d offset=%.0f sum1=%08x\n", - i, s->sums[i].len, (double)s->sums[i].offset, + "chunk[%d] len=%d offset=%s sum1=%08x\n", + i, s->sums[i].len, big_num(s->sums[i].offset, 0), s->sums[i].sum1); } } @@ -324,8 +324,8 @@ void send_files(int f_in, int f_out) mbuf = NULL; if (DEBUG_GTE(CHKSUM, 2)) { - rprintf(FINFO, "send_files mapped %s%s%s of size %.0f\n", - path,slash,fname, (double)st.st_size); + rprintf(FINFO, "send_files mapped %s%s%s of size %s\n", + path,slash,fname, big_num(st.st_size, 0)); } write_ndx_and_attrs(f_out, ndx, iflags, fname, file, |