Changeset eee74cd in buchla-68k for ram/dopatch.c


Ignore:
Timestamp:
11/15/2017 08:58:07 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
f852615
Parents:
f06df21
Message:

Fixed mixed-signedness comparisons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/dopatch.c

    rf06df21 reee74cd  
    288288                baseled = lg2base[suba];        /* get base of LED group */
    289289
    290                 for (i = 0; i < (3 + (suba & 1)); i++) {        /* scan LEDs */
     290                for (i = 0; i < (int16_t)(3 + (suba & 1)); i++) {       /* scan LEDs */
    291291
    292292                        curled = i + baseled;
Note: See TracChangeset for help on using the changeset viewer.