mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Add missing cast for improper time_t use in computation.
This commit is contained in:
parent
8fcfcd18dd
commit
484a709abe
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue