* iface/dve2/dve2.cc (convert_aps): Fix two typos while
parsing >= and >, mistakenly registered as <= and <.
This commit is contained in:
parent
6d213e5e4c
commit
ef976c93d0
2 changed files with 7 additions and 2 deletions
|
|
@ -398,12 +398,12 @@ namespace spot
|
|||
case '>':
|
||||
if (s[1] == '=')
|
||||
{
|
||||
op = OP_LE;
|
||||
op = OP_GE;
|
||||
s += 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
op = OP_LT;
|
||||
op = OP_GT;
|
||||
++s;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue