Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Put id back in cb reader
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Aug 5, 2021
1 parent 67dd3aa commit 41510b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ module subroutine io_read_cb_in(self, param)
is_ascii = (param%in_type == 'ASCII')
if (is_ascii) then
open(unit = iu, file = param%incbfile, status = 'old', form = 'FORMATTED', iostat = ierr)
!read(iu, *, iostat = ierr) self%id
read(iu, *, iostat = ierr) self%id
read(iu, *, iostat = ierr) val
self%Gmass = real(val, kind=DP)
self%mass = real(val / param%GU, kind=DP)
Expand Down

0 comments on commit 41510b3

Please sign in to comment.