* iface/dve2/dve2.cc (convert_aps): Fix two typos while

parsing >= and >, mistakenly registered as <= and <.
This commit is contained in:
Alexandre Duret-Lutz 2011-03-10 22:29:56 +01:00
parent 6d213e5e4c
commit ef976c93d0
2 changed files with 7 additions and 2 deletions

View file

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