Skip to content

Commit 6796cd1

Browse files
author
Ivan Zhakov
committed
* subversion/tests/libsvn_subr/checksum-test.c
(do_bench_test): Use APR_SIZE_T_FMT to fprintf apr_size_t argument. git-svn-id: https://svn.apache.org/repos/asf/subversion/trunk@1933276 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5a83cfb commit 6796cd1

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

subversion/tests/libsvn_subr/checksum-test.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,9 @@ do_bench_test(apr_size_t blocksize, svn_checksum_kind_t kind, apr_pool_t *pool)
399399
const char *checksum_str = svn_checksum_serialize(checksum, pool, pool);
400400

401401
fprintf(stderr,
402-
"%s: processed %ld blocks of %ld bytes (%.2f GB) in 1 second\n",
402+
"%s: processed "
403+
"%" APR_SIZE_T_FMT " blocks of "
404+
"%" APR_SIZE_T_FMT " bytes (%.2f GB) in 1 second\n",
403405
checksum_str, count, blocksize, (double)bytes / bytes_in_gb);
404406
}
405407

0 commit comments

Comments
 (0)