diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-01-16 10:12:30 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-01-16 10:12:30 +0000 |
commit | 1d0847d38d3b9a8790f14af64e9da4ff47f86eef (patch) | |
tree | 27d0e1cff33619aa44697cd5359677e2e41e6164 /sbin/md5 | |
parent | 69bab6f567f7faefd399de1f54a05a57f3fbff1e (diff) | |
download | src-1d0847d38d3b9a8790f14af64e9da4ff47f86eef.tar.gz src-1d0847d38d3b9a8790f14af64e9da4ff47f86eef.zip |
Trivial fix for braino.
Reviewed by: phk
Submitted by: Martin Ibert <mib@ppe.bb-data.de>
Notes
Notes:
svn path=/head/; revision=21763
Diffstat (limited to 'sbin/md5')
-rw-r--r-- | sbin/md5/md5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 1d776902554e..5435cf4d5e05 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -107,7 +107,7 @@ MDTimeTrial() printf ("MD5 time trial. Digesting %d %d-byte blocks ...", - TEST_BLOCK_LEN, TEST_BLOCK_COUNT); + TEST_BLOCK_COUNT, TEST_BLOCK_LEN); /* Initialize block */ for (i = 0; i < TEST_BLOCK_LEN; i++) |