Skip to content

Commit db517c1

Browse files
authored
Merge pull request #3064 from andrew-platt/b/ErrMsg_Issue3057
FASTlib: fix typo in error message
2 parents f9c18e7 + 31ad352 commit db517c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/openfast-library/src/FAST_Subs.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2087,7 +2087,7 @@ SUBROUTINE ValidateInputData(p, m_FAST, ErrStat, ErrMsg)
20872087
IF ( p%TMax < 0.0_DbKi ) THEN
20882088
CALL SetErrStat( ErrID_Fatal, 'TMax must not be a negative number.', ErrStat, ErrMsg, RoutineName )
20892089
ELSE IF ( p%TMax < p%TStart ) THEN
2090-
CALL SetErrStat( ErrID_Fatal, 'TStart ('//trim(num2lstr(p%TStart))//') should be greater than TMax ('//trim(num2lstr(p%TMax))//') in OpenFAST input file.', ErrStat, ErrMsg, RoutineName )
2090+
CALL SetErrStat( ErrID_Fatal, 'TMax ('//trim(num2lstr(p%TMax))//') should be greater than TStart ('//trim(num2lstr(p%TStart))//') in the OpenFAST input file.', ErrStat, ErrMsg, RoutineName )
20912091
END IF
20922092

20932093
IF ( p%n_ChkptTime < p%n_TMax_m1 ) THEN

0 commit comments

Comments
 (0)