Hi. | diff --git a/lib/dfa.c b/lib/dfa.c | index dee7be861..1d2d40457 100644 | --- a/lib/dfa.c | +++ b/lib/dfa.c | @@ -2466,7 +2466,7 @@ static int | compare (const void *a, const void *b) | { | position const *p = a, *q = b; | - return p->index < q->index ? -1 : p->index > q->index; | + return _GL_CMP (p->index, q->index); | }
Please revert this, as it breaks compilation in gawk. Thanks, Arnold