Changeset aad4ca4 in git for misc/intset.cc


Ignore:
Timestamp:
Dec 6, 2017, 7:05:25 PM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
06b3e84d21e073249ada6d3b863bb3b8ce91d3be
Parents:
3803c6a39fad57f9a8e12942b2928c215504e027
Message:
format: Warn -> WarnS, trailing spaces
File:
1 edited

Legend:

Unmodified
Added
Removed
  • misc/intset.cc

    r3803c6 raad4ca4  
    6767    }
    6868    else
    69     {               
     69    {
    7070      l->data = (void*) tobeassigned;
    71     }       
     71    }
    7272  }
    7373  else
     
    116116  {
    117117    WerrorS("syntax: intersect_set(<intset>,<intset>,<intset>)");
    118     return TRUE; 
     118    return TRUE;
    119119  }
    120120  si_intset *a=(si_intset*)arg->Data();
     
    150150  ||(arg->next->Typ()!=INT_CMD))
    151151  {
    152     WerrorS("syntax: insert_set(<intset>,<int>)"); 
     152    WerrorS("syntax: insert_set(<intset>,<int>)");
    153153    return TRUE;
    154154  }
     
    156156  int b=(int)(long)arg->next->Data();
    157157  a->insert(b);
    158   result->rtyp=NONE; 
     158  result->rtyp=NONE;
    159159  result->data=NULL;
    160160  return FALSE;
Note: See TracChangeset for help on using the changeset viewer.