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:
Juli Mallett 2002-05-03 20:46:10 +00:00
parent cc0e549485
commit a1269e01b8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95998

View File

@ -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);