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

    r72741f4 r00c31a2  
    268268                                patches[sp].prevstm = pp;
    269269
    270                         if (sp = findnxt(cp))           /* adjust ptecpos */
     270                        if ((sp = findnxt(cp)))         /* adjust ptecpos */
    271271                                ptecpos = sp;
    272                         else if (pp = findprv(cp))
     272                        else if ((pp = findprv(cp)))
    273273                                ptecpos = pp;
    274274                        else
     
    279279                        for (i = 0; i < NDEFSTMS; ++i) {        /* adjust defptr list */
    280280
    281                                 if (cp = defptr[i]) {           /* in use ? */
     281                                if ((cp = defptr[i])) {         /* in use ? */
    282282
    283283                                        pp = 0;         /* initial predecessor */
Note: See TracChangeset for help on using the changeset viewer.