diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2002-01-20 13:32:05 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2002-01-20 13:32:05 +0000 |
commit | 14675026c36c5e4af0a6ad26a161393ec808185a (patch) | |
tree | cd081e79e18fd2e594f07b6e40add7b3fa0b2a40 /bin | |
parent | b1debdf727116f16170aa85959010013dd34583e (diff) |
Swap TEST_BLOCK_LEN and TEST_BLOCK_COUNT in benchmark printf.
ok millert@
Diffstat (limited to 'bin')
-rw-r--r-- | bin/md5/md5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/md5/md5.c b/bin/md5/md5.c index 4c3dc46c725..5c5d4d1b6a1 100644 --- a/bin/md5/md5.c +++ b/bin/md5/md5.c @@ -1,4 +1,4 @@ -/* $OpenBSD: md5.c,v 1.14 2001/09/06 13:29:08 mpech Exp $ */ +/* $OpenBSD: md5.c,v 1.15 2002/01/20 13:32:04 camield Exp $ */ /* * Copyright (c) 2001 Todd C. Miller <Todd.Miller@courtesan.com> @@ -196,7 +196,7 @@ digest_time(struct hash_functions *hf) double elapsed; (void)printf("%s time trial. Processing %d %d-byte blocks...", - hf->name, TEST_BLOCK_LEN, TEST_BLOCK_COUNT); + hf->name, TEST_BLOCK_COUNT, TEST_BLOCK_LEN); fflush(stdout); /* Initialize data based on block number. */ |