Changeset 2637

Show
Ignore:
Timestamp:
11/27/07 00:47:41 (1 year ago)
Author:
dhozac
Message:

Floats are numbers too.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/vsched.c

    r2510 r2637  
    184184      WRITE_MSG(2, ENSC_WRAPPERS_PREFIX); 
    185185      WRITE_STR(2, name); 
    186       WRITE_MSG(2, ": is not a number\n"); 
     186      WRITE_MSG(2, ": is not an integer\n"); 
    187187      exit(1); 
    188188    } 
     
    245245#define SETVAL(ATTR,MASK) \ 
    246246  if (!isNumber(optarg, &tmp, false)) { \ 
    247     WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "non-numeric value specified for '--" #ATTR "'\n"); \ 
     247    WRITE_MSG(2, ENSC_WRAPPERS_PREFIX "non-integer value specified for '--" #ATTR "'\n"); \ 
    248248    exit(wrapper_exit_code); \ 
    249249  } \