Changeset 432327d in buchla-68k for ram/etagch.c


Ignore:
Timestamp:
09/17/2017 09:27:29 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
6099cac
Parents:
8c8b4e5
Message:

Fix conversion warnings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etagch.c

    r8c8b4e5 r432327d  
    9898
    9999        n = nn & 0xFF;
    100         ebuf[stccol - cfetp->flcol] = k + '0';
     100        ebuf[stccol - cfetp->flcol] = (int8_t)(k + '0');
    101101        ebuf[2] = '\0';
    102102
    103         dspbuf[0] = k + '0';
     103        dspbuf[0] = (int8_t)(k + '0');
    104104        dspbuf[1] = '\0';
    105105
Note: See TracChangeset for help on using the changeset viewer.