Ignore:
Timestamp:
03/21/07 18:18:44 (17 years ago)
Author:
pinsard
Message:

replace some print by some report in some .pro #2

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ReadWrite/writebat.pro

    r231 r236  
    2626; basic checks 
    2727  IF n_params() NE 2 THEN BEGIN 
    28     print, 'bad number of arguments in the call of writebat' 
     28    ras = report( 'bad number of arguments in the call of writebat') 
    2929    return 
    3030  ENDIF 
    3131  IF size(filename, /type) NE 7 THEN BEGIN 
    32     print, 'the filename should be a string' 
     32    ras = report( 'the filename should be a string') 
    3333    return 
    3434  ENDIF 
    3535  sbat = size(zbat) 
    3636  IF sbat[0] NE 2 THEN BEGIN 
    37     print, 'bathymetry array should be 2d array' 
     37    ras = report( 'bathymetry array should be 2d array') 
    3838    return 
    3939  ENDIF 
Note: See TracChangeset for help on using the changeset viewer.