New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 9168 for branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_if.F90 – NEMO

Ignore:
Timestamp:
2017-12-23T13:27:17+01:00 (6 years ago)
Author:
gm
Message:

dev_merge_2017: OPA_SRC & CONFIG: remove useless warning when reading namelist_cfg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2017/dev_merge_2017/NEMOGCM/NEMO/OPA_SRC/SBC/sbcice_if.F90

    r7646 r9168  
    1717   USE sbc_oce        ! surface boundary condition: ocean fields 
    1818#if defined key_lim3 
    19    USE ice    , ONLY :   a_i  
     19   USE ice            , ONLY :   a_i 
    2020#else 
    21    USE sbc_ice, ONLY :   a_i  
     21   USE sbc_ice        , ONLY :   a_i  
    2222#endif 
     23   ! 
     24   USE in_out_manager ! I/O manager 
     25   USE iom            ! I/O manager library 
    2326   USE fldread        ! read input field 
    24    USE iom            ! I/O manager library 
    25    USE in_out_manager ! I/O manager 
    2627   USE lib_mpp        ! MPP library 
    2728   USE lib_fortran    ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)   
     
    7576         REWIND( numnam_ref )              ! Namelist namsbc_iif in reference namelist : Ice if file 
    7677         READ  ( numnam_ref, namsbc_iif, IOSTAT = ios, ERR = 901) 
    77 901      IF( ios /= 0 ) CALL ctl_nam ( ios , 'namsbc_iif in reference namelist', lwp ) 
     78901      IF( ios /= 0 )   CALL ctl_nam ( ios , 'namsbc_iif in reference namelist', lwp ) 
    7879 
    7980         REWIND( numnam_cfg )              ! Namelist Namelist namsbc_iif in configuration namelist : Ice if file 
    8081         READ  ( numnam_cfg, namsbc_iif, IOSTAT = ios, ERR = 902 ) 
    81 902      IF( ios /= 0 ) CALL ctl_nam ( ios , 'namsbc_iif in configuration namelist', lwp ) 
     82902      IF( ios >  0 )  CALL ctl_nam ( ios , 'namsbc_iif in configuration namelist', lwp ) 
    8283         IF(lwm) WRITE ( numond, namsbc_iif ) 
    8384 
Note: See TracChangeset for help on using the changeset viewer.