diff --git a/ChangeLog b/ChangeLog index d7297ff19..c80a95bca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-03-10 Alexandre Duret-Lutz + + * iface/dve2/dve2.cc (convert_aps): Fix two typos while + parsing >= and >, mistakenly registered as <= and <. + 2011-03-07 Alexandre Duret-Lutz Remove the Nips interface. diff --git a/iface/dve2/dve2.cc b/iface/dve2/dve2.cc index c41f8b23a..d16918dc4 100644 --- a/iface/dve2/dve2.cc +++ b/iface/dve2/dve2.cc @@ -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;