Skip to content

Commit 7fb6d2a

Browse files
authored
Fix output format in sparse example
Fixes #918
1 parent 74f5f90 commit 7fb6d2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/linalg/example_sparse_from_ijv.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ program example_sparse_from_ijv
3535
print *, 'ELL'
3636
print *, ' index | data'
3737
do i = 1, ELL%nrows
38-
print '(3I4,x,3f8.1)', ELL%index(i,:) , ELL%data(i,:)
38+
print '(3I4,1x,3f8.1)', ELL%index(i,:) , ELL%data(i,:)
3939
end do
4040

41-
end program example_sparse_from_ijv
41+
end program example_sparse_from_ijv

0 commit comments

Comments
 (0)