Skip to content

Commit 991dfef

Browse files
committed
Auto-generated commit
1 parent e7826d8 commit 991dfef

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
<details>
3434

35+
- [`09c9ceb`](https://github.com/stdlib-js/stdlib/commit/09c9ceb58c6dd23c10f1980094851983c57d693f) - **chore:** fix formatting _(by Athan Reines)_
3536
- [`51bf6f9`](https://github.com/stdlib-js/stdlib/commit/51bf6f9d2bb027aacecda87e02f957badbc246b0) - **bench:** fix formatting _(by Athan Reines)_
3637
- [`05e83e1`](https://github.com/stdlib-js/stdlib/commit/05e83e1582cfeef43b39227e4a5c891f9934d1c0) - **fix:** resolve typo in include guard _(by Philipp Burckhardt)_
3738
- [`db9696d`](https://github.com/stdlib-js/stdlib/commit/db9696db44c79bfcb4cb0361d2666aab5724716f) - **docs:** update related packages sections [(#6007)](https://github.com/stdlib-js/stdlib/pull/6007) _(by stdlib-bot, Athan Reines)_

benchmark/fortran/benchmark.length.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f15.9)') elapsed
99+
write (str, '(f100.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f15.9)') rate
103+
write( str, '(f100.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..

0 commit comments

Comments
 (0)