Skip to content

Commit

Permalink
Fix line length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
uramirez8707 committed Jan 8, 2025
1 parent 4163521 commit 162aa9c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions diag_manager/fms_diag_object.F90
Original file line number Diff line number Diff line change
Expand Up @@ -885,8 +885,9 @@ subroutine fms_diag_do_io(this, end_time)
call diag_file%flush_diag_file()
call diag_file%update_next_write(model_time)
call diag_file%update_current_new_file_freq_index(model_time)
if (diag_file%is_time_to_close_file(model_time, force_write)) call diag_file%close_diag_file(this%FMS_diag_output_buffers, &
this%model_end_time, diag_fields = this%FMS_diag_fields)
if (diag_file%is_time_to_close_file(model_time, force_write)) &
call diag_file%close_diag_file(this%FMS_diag_output_buffers, &
this%model_end_time, diag_fields = this%FMS_diag_fields)
else if (force_write) then
call diag_file%prepare_for_force_write()
call diag_file%write_time_data()
Expand Down

0 comments on commit 162aa9c

Please sign in to comment.