Changeset dade7a0 in buchla-68k for libsm


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.

Location:
libsm
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • libsm/memcmp.c

    rc80943f rdade7a0  
    1818        if (cp1 != cp2)
    1919                while (--n >= 0)
    20                         if (diff = *cp1++ - *cp2++)
     20                        if ((diff = *cp1++ - *cp2++))
    2121                                return(diff);
    2222
  • 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)
  • 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);
  • libsm/str2uc.c

    rc80943f rdade7a0  
    1313        register int8_t *r = s;
    1414
    15         while (c = *s)
    16                 *s++ = toupper(c);
     15        while ((c = *s))
     16                *s++ = (int8_t)toupper(c);
    1717
    1818        return(r);
  • libsm/strcat.c

    rc80943f rdade7a0  
    1717        os1 = s1;
    1818
    19         while(*s1++)
     19        while (*s1++)
    2020                ;
    2121
    2222        --s1;
    2323
    24         while(*s1++ = *s2++)
     24        while ((*s1++ = *s2++))
    2525                ;
    2626
  • libsm/strcpy.c

    rc80943f rdade7a0  
    1717        os1 = s1;
    1818
    19         while(*s1++ = *s2++)
     19        while ((*s1++ = *s2++))
    2020                ;
    2121
  • libsm/strltrm.c

    rc80943f rdade7a0  
    2424                ++rp;
    2525
    26         while (c = *rp++)
     26        while ((c = *rp++))
    2727                *lp++ = c;
    2828
  • libsm/strncat.c

    rc80943f rdade7a0  
    1818        os1 = s1;
    1919
    20         while(*s1++)
     20        while (*s1++)
    2121                ;
    2222
    2323        --s1;
    2424
    25         while(*s1++ = *s2++)
     25        while ((*s1++ = *s2++))
    2626                if(--n < 0) {
    2727
  • libsm/strtol.c

    rc80943f rdade7a0  
    3939        }
    4040
    41         if (base == 0)
     41        if (base == 0) {
    4242                if (c != '0')
    4343                        base = 10;
     
    4646                else
    4747                        base = 8;
     48        }
     49
    4850        /*
    4951                for any base > 10, the digits incrementally following
Note: See TracChangeset for help on using the changeset viewer.