return foo not return(foo)

This commit is contained in:
Todd C. Miller
2011-02-07 06:47:29 -05:00
parent 056cb8a5da
commit 21d8f01fac
4 changed files with 10 additions and 10 deletions

View File

@@ -2163,8 +2163,8 @@ ldap_entry_compare(const void *a, const void *b)
const struct ldap_entry_wrapper *aw = a;
const struct ldap_entry_wrapper *bw = b;
return(bw->order < aw->order ? -1 :
(bw->order > aw->order ? 1 : 0));
return bw->order < aw->order ? -1 :
(bw->order > aw->order ? 1 : 0);
}
/*