Skip to content

Commit 6debda8

Browse files
committed
fixes error messages
1 parent 2c8947b commit 6debda8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/shared/read_parameter_file.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,11 @@ subroutine read_parameter_file()
245245
call read_value_logical(OUTPUT_SEISMOS_SAC_BINARY, 'OUTPUT_SEISMOS_SAC_BINARY', ier)
246246
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_SAC_BINARY'
247247
call read_value_logical(OUTPUT_SEISMOS_ASDF, 'OUTPUT_SEISMOS_ASDF', ier)
248-
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_HDF5'
248+
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_ASDF'
249249
call read_value_logical(OUTPUT_SEISMOS_3D_ARRAY, 'OUTPUT_SEISMOS_3D_ARRAY', ier)
250-
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_ASDF'
250+
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_3D_ARRAY'
251251
call read_value_logical(OUTPUT_SEISMOS_HDF5, 'OUTPUT_SEISMOS_HDF5', ier)
252-
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_3D_ARRAY'
252+
if (ier /= 0) stop 'an error occurred while reading the parameter file: OUTPUT_SEISMOS_HDF5'
253253
call read_value_logical(ROTATE_SEISMOGRAMS_RT, 'ROTATE_SEISMOGRAMS_RT', ier)
254254
if (ier /= 0) stop 'an error occurred while reading the parameter file: ROTATE_SEISMOGRAMS_RT'
255255
call read_value_logical(WRITE_SEISMOGRAMS_BY_MAIN, 'WRITE_SEISMOGRAMS_BY_MAIN', ier)

0 commit comments

Comments
 (0)