diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-26 14:29:47 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-07-26 14:29:47 +0300 |
commit | 3bee4587c5d57155c41dda16d1a414b6acb5a477 (patch) | |
tree | 05571724e6766cfca7f667252b6cd21fa619a44d /support/dfa.c | |
parent | d45cad0210ddba7658a1f894a82167f87d7abb3a (diff) | |
download | egawk-3bee4587c5d57155c41dda16d1a414b6acb5a477.tar.gz egawk-3bee4587c5d57155c41dda16d1a414b6acb5a477.tar.bz2 egawk-3bee4587c5d57155c41dda16d1a414b6acb5a477.zip |
Sync support files from GNULIB.
Diffstat (limited to 'support/dfa.c')
-rw-r--r-- | support/dfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/dfa.c b/support/dfa.c index 41bf5cc2..3327f627 100644 --- a/support/dfa.c +++ b/support/dfa.c @@ -2465,7 +2465,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 (p->index > q->index) - (p->index < q->index); } static void |