ci(windows): treat compiler warnings as errors

Reduce the warning level from 3 to 1 and fix all warnings.
This commit is contained in:
dundargoc
2022-11-12 13:34:14 +01:00
parent f8c6718277
commit 2755510f78
7 changed files with 24 additions and 13 deletions

View File

@@ -1512,7 +1512,7 @@ static char *find_pipe(const char *cmd)
for (const char *p = cmd; *p != NUL; p++) {
if (!inquote && *p == '|') {
return p;
return (char *)p;
}
if (*p == '"') {
inquote = !inquote;