From 827bb2a335ccef2a6cca7d86bdc0a7b9e6661491 Mon Sep 17 00:00:00 2001 From: dillon Date: Sun, 28 Oct 2001 00:01:58 +0000 Subject: Add missing cast for improper time_t use in computation. --- sbin/md5/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/md5') diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index c1e1eef..5e3c9cb 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -162,7 +162,7 @@ MDTimeTrial(void) * Anderson, ric@Artisoft.COM.) */ printf ("Speed = %ld bytes/second\n", - (long) TEST_BLOCK_LEN * (long) TEST_BLOCK_COUNT / ((endTime - startTime) != 0 ? (endTime - startTime) : 1)); + (long) TEST_BLOCK_LEN * (long) TEST_BLOCK_COUNT / ((endTime - startTime) != 0 ? (long)(endTime - startTime) : 1)); } /* * Digests a reference suite of strings and prints the results. -- cgit v1.1