Changeset a8c6a0e in buchla-68k for ram


Ignore:
Timestamp:
11/12/2017 10:26:41 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
9b98b6a
Parents:
7c0efb6
Message:

Fixed etidin.c.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etidin.c

    r7c0efb6 ra8c6a0e  
    158158
    159159        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    160         ebuf[ec] = k + '0';
     160        ebuf[ec] = (int8_t)(k + '0');
    161161        ebuf[2] = '\0';
    162162
    163         dspbuf[0] = k + '0';
     163        dspbuf[0] = (int8_t)(k + '0');
    164164        dspbuf[1] = '\0';
    165165
Note: See TracChangeset for help on using the changeset viewer.