ctype sign fixes (Tom Miller)
This commit is contained in:
parent
b330c942b4
commit
74374cc8a4
10 changed files with 22 additions and 17 deletions
|
|
@ -171,7 +171,7 @@ atimes(char *ar)
|
|||
continue;
|
||||
}
|
||||
goto skip;
|
||||
}else if(strings && h.name[0]=='/' && isdigit(h.name[1])){
|
||||
}else if(strings && h.name[0]=='/' && isdigit((uchar)h.name[1])){
|
||||
i = strtol(h.name+1, &p, 10);
|
||||
if(*p != ' ' || i >= strlen(strings))
|
||||
goto skip;
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@ dumpr(char *s, Rule *r)
|
|||
Bprint(&bout, " prog='%s'", r->prog);
|
||||
Bprint(&bout, "\n\ttarget=%s: %s\n", r->target, wtos(r->tail, ' '));
|
||||
Bprint(&bout, "\trecipe@%ld='%s'\n", r->recipe, r->recipe);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue