From a85d5adf3d0ae59d3e6a9d2ae2334304fa1b5300 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Fri, 19 May 2023 13:33:24 -0400 Subject: [PATCH] Fixed bug that prevented progress bar from updating --- src/swiftest/swiftest_io.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swiftest/swiftest_io.f90 b/src/swiftest/swiftest_io.f90 index e5485c24a..692a1a0b1 100644 --- a/src/swiftest/swiftest_io.f90 +++ b/src/swiftest/swiftest_io.f90 @@ -277,7 +277,7 @@ module subroutine swiftest_io_display_run_information(self, param, integration_t if (this_image() == 1) then #endif write(pbarmessage,fmt=pbarfmt) self%t, param%tstop - call pbar%update(1_I8B,message=pbarmessage) + call pbar%update(param%iloop,message=pbarmessage) #ifdef COARRAY end if !(this_image() == 1) #endif