silence all gcc warnings
This commit is contained in:
@ -13,7 +13,7 @@ memimagestring(Memimage *b, Point p, Memimage *color, Point cp, Memsubfont *f, c
|
||||
Fontchar *i;
|
||||
|
||||
s = (uchar*)cs;
|
||||
for(; c=*s; p.x+=width, cp.x+=width){
|
||||
for(; (c=*s); p.x+=width, cp.x+=width){
|
||||
width = 0;
|
||||
if(c < Runeself)
|
||||
s++;
|
||||
@ -47,7 +47,7 @@ memsubfontwidth(Memsubfont *f, char *cs)
|
||||
|
||||
p = Pt(0, f->height);
|
||||
s = (uchar*)cs;
|
||||
for(; c=*s; p.x+=width){
|
||||
for(; (c=*s); p.x+=width){
|
||||
width = 0;
|
||||
if(c < Runeself)
|
||||
s++;
|
||||
|
Reference in New Issue
Block a user