From: Jason A. Donenfeld Date: Wed, 26 Feb 2014 15:57:15 +0000 (+0100) Subject: ui-refs: simplify cmp_age logic X-Git-Url: https://gitweb.ps.run/ps-cgit/commitdiff_plain/493061102653ac6483dc3c9649c726318e2488b6?hp=493061102653ac6483dc3c9649c726318e2488b6 ui-refs: simplify cmp_age logic The check in parse_user that eventually makes it into committer_date and tagger_date is: else if (mode == 3 && isdigit(*p)) { *date = atol(p); mode++; } Since isdigit('-') is always false, date will never be negative. Thus the sign of this function: static int cmp_age(int age1, int age2) { if (age1 != 0 && age2 != 0) return age2 - age1; if (age1 == 0 && age2 == 0) return 0; if (age1 == 0) return +1; return -1; } Will always be the same as the sign of this function: static inline int cmp_age(int age1, int age2) { return age2 - age1; } Signed-off-by: Jason A. Donenfeld Idea-by: Lukas Fleischer ---