* 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

@ -1,3 +1,8 @@
2011-03-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* iface/dve2/dve2.cc (convert_aps): Fix two typos while
parsing >= and >, mistakenly registered as <= and <.
2011-03-07 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2011-03-07 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Remove the Nips interface. Remove the Nips interface.

View file

@ -398,12 +398,12 @@ namespace spot
case '>': case '>':
if (s[1] == '=') if (s[1] == '=')
{ {
op = OP_LE; op = OP_GE;
s += 2; s += 2;
} }
else else
{ {
op = OP_LT; op = OP_GT;
++s; ++s;
} }
break; break;