Changeset 29a9e5d in rtems


Ignore:
Timestamp:
08/01/97 20:14:57 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
adf7b5c4
Parents:
9deb5b8b
Message:

Removed warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/mvme162/consolex/consolex.c

    r9deb5b8b r29a9e5d  
    602602        if((mode&LOCAL_ICRNL) && (*buffer == '\r'))
    603603            *buffer = '\n';
    604         if((mode&LOCAL_IUCLC) && isupper(*buffer))
     604        if((mode&LOCAL_IUCLC) && isupper((int)*buffer))
    605605            *buffer = tolower(*buffer);
    606606        if(mode&LOCAL_ISTRIP)
     
    696696        if((mode&LOCAL_OCRNL) && (ch == '\r'))
    697697            ch = '\n';
    698         if((mode&OLCUC) && (islower(ch)))
     698        if((mode&OLCUC) && (islower((int)ch)))
    699699            ch = toupper(ch);
    700700        if(rw_args->flags & LIBIO_FLAGS_NO_DELAY){
Note: See TracChangeset for help on using the changeset viewer.