Changeset dade7a0 in buchla-68k for libsm/str2lc.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/str2lc.c

    rc80943f rdade7a0  
    1313        register int8_t *r = s;
    1414
    15         while (c = *s)
    16                 *s++ = tolower(c);
     15        while ((c = *s))
     16                *s++ = (int8_t)tolower(c);
    1717
    1818        return(r);
Note: See TracChangeset for help on using the changeset viewer.