Changeset bf89cfb in buchla-68k for vlib/vmput.c


Ignore:
Timestamp:
07/15/2017 11:15:58 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
c80943f
Parents:
09d1345
Message:

No more warnings in vlib.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vmput.c

    r09d1345 rbf89cfb  
    2323        tr = row;
    2424
    25         while (cp = *ms++) {
     25        while ((cp = *ms++)) {
    2626
    2727                tc = col;
    2828
    29                 while (c = *cp++)
     29                while ((c = *cp++))
    3030                        vputc(obase, tr, tc++, c, ma);
    3131
     
    4949        tr = row;
    5050
    51         while (cp = *ms++) {
     51        while ((cp = *ms++)) {
    5252
    5353                tc = col;
    5454                tm = *ma++;
    5555
    56                 while (c = *cp++)
     56                while ((c = *cp++))
    5757                        vputc(obase, tr, tc++, c, *tm++);
    5858
Note: See TracChangeset for help on using the changeset viewer.