Ignore:
Timestamp:
Mar 26, 2009 3:11:21 PM (15 years ago)
Author:
heinze
Message:

Indentation of the message calls corrected

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/parin.f90

    r260 r274  
    179179    READ ( 11, inipar, ERR=10, END=11 )
    180180    GOTO 12
    181  10 message_string = 'errors in \$inipar &or no \$inipar-namelist found (CRAY-machines only)'
     181 10 message_string = 'errors in \$inipar &or no \$inipar-namelist ' // &
     182                     'found (CRAY-machines only)'
    182183    CALL message( 'parin', 'PA0271', 1, 2, 0, 6, 0 )
    183184
     
    229230
    230231       IF ( nx <= 0 )  THEN
    231           WRITE( message_string, * ) 'no value or wrong value given for nx: nx=', nx
     232          WRITE( message_string, * ) 'no value or wrong value given for nx: ',&
     233                                     'nx=', nx
    232234          CALL message( 'parin', 'PA0273', 1, 2, 0, 6, 0 )
    233235       ENDIF
    234236       IF ( ny <= 0 )  THEN
    235           WRITE( message_string, * ) 'no value or wrong value given for ny: ny=', ny
     237          WRITE( message_string, * ) 'no value or wrong value given for ny: ',&
     238                                     'ny=', ny
    236239          CALL message( 'parin', 'PA0274', 1, 2, 0, 6, 0 )
    237240       ENDIF
    238241       IF ( nz <= 0 )  THEN
    239           WRITE( message_string, * ) 'no value or wrong value given for nz: nz=', nz
     242          WRITE( message_string, * ) 'no value or wrong value given for nz: ',&
     243                                     'nz=', nz
    240244          CALL message( 'parin', 'PA0275', 1, 2, 0, 6, 0 )
    241245       ENDIF
Note: See TracChangeset for help on using the changeset viewer.