Rename eqrelval' which was renamed from
eqrel' to quiet a shadow warning
to `op' as suggested by Bruce, as this is used to store the operator between vl and vr. Submitted by: bde
This commit is contained in:
parent
cc0e549485
commit
a1269e01b8
@ -252,13 +252,13 @@ not()
|
||||
static int
|
||||
eqrel()
|
||||
{
|
||||
int vl, vr, eqrelval;
|
||||
int vl, vr, op;
|
||||
|
||||
vl = shift();
|
||||
while ((eqrelval = geteqrel()) != -1) {
|
||||
while ((op = geteqrel()) != -1) {
|
||||
vr = shift();
|
||||
|
||||
switch (eqrelval) {
|
||||
switch (op) {
|
||||
|
||||
case EQL:
|
||||
vl = (vl == vr);
|
||||
|
Loading…
x
Reference in New Issue
Block a user