mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-23 07:31:31 +00:00
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
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=95998
@ -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…
Reference in New Issue
Block a user