Changeset dade7a0 in buchla-68k for libsm/memcmpu.c


Ignore:
Timestamp:
07/15/2017 11:23:25 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
e102943
Parents:
c80943f
Message:

No more warnings in libsm.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libsm/memcmpu.c

    rc80943f rdade7a0  
    2020
    2121                if (isascii(c1) && islower(c1))
    22                         c1 = _toupper(c1);
     22                        c1 = (int8_t)_toupper(c1);
    2323
    2424                if (isascii(c2) && islower(c2))
    25                         c2 = _toupper(c2);
     25                        c2 = (int8_t)_toupper(c2);
    2626
    2727                if (c1 < c2)
Note: See TracChangeset for help on using the changeset viewer.