Changeset 00c31a2 in buchla-68k for ram/cminit.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/cminit.c

    r72741f4 r00c31a2  
    122122        QQop = QQstr;
    123123
    124         while (*QQop++ = *q++) ;
     124        while ((*QQop++ = *q++)) ;
    125125
    126126        QQip = t;
     
    163163        QQop = QQstr;
    164164
    165         while (*QQop++ = *q++) ;
     165        while ((*QQop++ = *q++)) ;
    166166
    167167        QQip = t;
     
    195195        n = c - '0';
    196196
    197         while (c = *p) {
     197        while ((c = *p)) {
    198198
    199199                if (!isascii(c))
     
    252252        n = 0;
    253253
    254         while (p = *l++) {
     254        while ((p = *l++)) {
    255255
    256256                q = p;
     
    260260                        QQop = QQstr;
    261261
    262                         while (*QQop++ = *q++) ;
     262                        while ((*QQop++ = *q++)) ;
    263263
    264264                        QQlnum = n;
     
    288288        n = 0;
    289289
    290         while (p = *l++) {
     290        while ((p = *l++)) {
    291291
    292292                q = p;
     
    296296                        QQop = QQstr;
    297297
    298                         while (*QQop++ = *q++) ;
     298                        while ((*QQop++ = *q++)) ;
    299299
    300300                        QQlnum = n;
Note: See TracChangeset for help on using the changeset viewer.