Skip to content

Commit

Permalink
format the write(6,*) so they do not have so much whitespace in them
Browse files Browse the repository at this point in the history
flang pads the whitespace a lot...

Signed-off-by: Jeff Hammond <[email protected]>
  • Loading branch information
jeffhammond committed Apr 22, 2024
1 parent 183bcec commit 68f7d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/property/waimfile.F
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ subroutine waimfile(rtdb)
call util_file_name('movecs', .false.,.false.,vec_file )
endif
endif
write(6,*)' using vec ',vec_file,'@@'
write(6,'(a11,a60,a2)')' using vec ',vec_file,'@@'
call util_file_name_resolve(vec_file, .false.)
c> movecs
if (.not. movecs_read_header(vec_file, title_vec, basis_name,
Expand Down Expand Up @@ -808,7 +808,7 @@ logical function waimfile_printwfn(filename,title,natoms,
parameter (unitno = 38)

waimfile_printwfn=.false.
write(6,*) ' Name of Final wnf-file ', filename
write(6,'(a30,a60)') ' Name of Final wnf-file ', filename
cc
open(unit=unitno, file=filename, status='unknown',
& form='formatted')
Expand Down

0 comments on commit 68f7d19

Please sign in to comment.