Changeset 00c31a2 in buchla-68k for ram/wheel.c


Ignore:
Timestamp:
11/15/2017 07:46:27 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
58ff1a9
Parents:
72741f4
Message:

Fixed parentheses and braces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/wheel.c

    r72741f4 r00c31a2  
    176176#endif
    177177
    178         while (c = 0x00FF & *str++)             /* get a byte */
     178        while ((c = 0x00FF & *str++))           /* get a byte */
    179179                BIOS(B_PUTC, PRT_DEV, c);       /* output it */
    180180}
Note: See TracChangeset for help on using the changeset viewer.