Skip to content

Commit ae56a49

Browse files
committed
Added int type for parameters for 32bit systems.
1 parent 9917760 commit ae56a49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3174,7 +3174,7 @@ function show_start(int $start_timestamp): void
31743174
echo "TIME START " . date('Y-m-d H:i:s', $start_timestamp) . "\n=====================================================================\n";
31753175
}
31763176

3177-
function show_end(int $start_timestamp, float $start_time, float $end_time): void
3177+
function show_end(int $start_timestamp, int|float $start_time, int|float $end_time): void
31783178
{
31793179
echo "=====================================================================\nTIME END " . date('Y-m-d H:i:s', $start_timestamp + (int)(($end_time - $start_time)/1e9)) . "\n";
31803180
}

0 commit comments

Comments
 (0)