[hackers] [sbase] [PATCH] join: Use LIMIT macro

From: Wolfgang Corcoran-Mathe <first.lord.of.teal_AT_gmail.com>
Date: Wed, 22 Jul 2015 13:36:37 -0400

---
 join.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/join.c b/join.c
index 1f2fb8c..ddccdf1 100644
--- a/join.c
+++ b/join.c
_AT_@ -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;
-- 
2.3.5
Received on Wed Jul 22 2015 - 19:36:37 CEST

This archive was generated by hypermail 2.3.0 : Wed Jul 22 2015 - 19:48:10 CEST