join: Use LIMIT macro

This commit is contained in:
Wolfgang Corcoran-Mathe 2015-07-22 13:36:37 -04:00 committed by sin
parent 5dab8bbfa9
commit 625f421f5a
1 changed files with 1 additions and 4 deletions

5
join.c
View File

@ -173,10 +173,7 @@ linecmp(struct line *la, struct line *lb, size_t jfa, size_t jfb)
} else {
status = memcmp(la->fields[jfa].s, lb->fields[jfb].s,
MAX (la->fields[jfa].len, lb->fields[jfb].len));
if (status > 0)
status = 1;
else if (status < 0)
status = -1;
LIMIT(status, -1, 1);
}
return status;