Skip to content

Commit

Permalink
xmi_detector_f: fix use of xmi_print_progress in xmi_detector_convolu…
Browse files Browse the repository at this point in the history
…te_all
  • Loading branch information
tschoonj committed Apr 10, 2017
1 parent b4929ed commit 67330b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xmi_detector_f.F90
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ SUBROUTINE xmi_detector_convolute_all(&
IF (options%use_variance_reduction == 1_C_INT .AND. C_ASSOCIATED(var_red_historyPtr)) THEN
IF (options%verbose == 1_C_INT)&
#if __GNUC__ == 4 && __GNUC_MINOR__ < 6
CALL xmi_print_progress('Calculating variance reduction history detector absorption correction'
CALL xmi_print_progress('Calculating variance reduction history detector absorption correction'//C_NULL_CHAR, -1)
#else
WRITE(output_unit,'(A, I2)') 'Calculating variance reduction history detector absorption correction'
#endif
Expand All @@ -276,7 +276,7 @@ SUBROUTINE xmi_detector_convolute_all(&
IF (C_ASSOCIATED(brute_historyPtr)) THEN
IF (options%verbose == 1_C_INT)&
#if __GNUC__ == 4 && __GNUC_MINOR__ < 6
CALL xmi_print_progress('Calculating brute force history detector absorption correction'
CALL xmi_print_progress('Calculating brute force history detector absorption correction'//C_NULL_CHAR, -1)
#else
WRITE(output_unit,'(A, I2)') 'Calculating brute force history detector absorption correction'
#endif
Expand Down

0 comments on commit 67330b7

Please sign in to comment.