[ci] Try to fix failing appveyor python builds
This commit is contained in:
parent
90aa3f75ba
commit
029ddab8b5
20 changed files with 40 additions and 39 deletions
|
|
@ -66,7 +66,7 @@ static int skip_tochar(String *s, int ch, String *out) {
|
|||
break;
|
||||
if (c == '\\') {
|
||||
c = Getc(s);
|
||||
if ((c != EOF) && (out))
|
||||
if (c != EOF && out)
|
||||
Putc(c, out);
|
||||
}
|
||||
}
|
||||
|
|
@ -1155,7 +1155,7 @@ static DOH *Preprocessor_replace(DOH *s) {
|
|||
Seek(s, -1, SEEK_CUR);
|
||||
}
|
||||
lenargs = Len(args);
|
||||
if ((!args) || (!lenargs)) {
|
||||
if (!args || !lenargs) {
|
||||
/* This is not a defined() operator. */
|
||||
Append(ns, id);
|
||||
state = 0;
|
||||
|
|
@ -1770,7 +1770,7 @@ String *Preprocessor_parse(String *s) {
|
|||
}
|
||||
} else if (Equal(id, kpp_line)) {
|
||||
} else if (Equal(id, kpp_include)) {
|
||||
if (((include_all) || (import_all)) && (allow)) {
|
||||
if ((include_all || import_all) && allow) {
|
||||
String *s1, *s2, *fn;
|
||||
String *dirname;
|
||||
int sysfile = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue