Changeset bf89cfb in buchla-68k for vlib/vputs.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/vputs.c

    r09d1345 rbf89cfb  
    2727        int16_t c;
    2828
    29         while (c = *str++) {
     29        while ((c = *str++)) {
    3030
    3131                vputc(obase, row, col, c, attr);
     
    5454        int16_t c;
    5555
    56         while (c = *str++) {
     56        while ((c = *str++)) {
    5757
    5858                vputc(obase, row, col, c, *attr++);
Note: See TracChangeset for help on using the changeset viewer.