be more accurate about the operator involved

This commit is contained in:
Bill Currie 2001-06-28 17:44:50 +00:00
parent 0271afbb10
commit eef9e8e2dc
1 changed files with 2 additions and 2 deletions

View File

@ -440,8 +440,8 @@ binary_expr (int op, expr_t *e1, expr_t *e2)
if ((op == '&' || op == '|')
&& e1->type == ex_uexpr && e1->e.expr.op == '!' && !e1->paren) {
fprintf (stderr, "%s:%d: warning: ambiguous logic. Suggest explicit parentheses with expressions involving ! and &\n",
strings + e1->file, e1->line);
fprintf (stderr, "%s:%d: warning: ambiguous logic. Suggest explicit parentheses with expressions involving ! and %c\n",
strings + e1->file, e1->line, op);
}
t1 = get_type (e1);