From: Michael Orlitzky Date: Fri, 23 Feb 2018 16:39:07 +0000 (-0500) Subject: Remove pointless indirection in acl_entry_count() and acl_is_minimal(). X-Git-Tag: v0.1.0~36 X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=916bcfd577de83186c26cd4e110b8f750e781054;hp=916bcfd577de83186c26cd4e110b8f750e781054;p=apply-default-acl.git Remove pointless indirection in acl_entry_count() and acl_is_minimal(). The acl_t type is already a pointer to a structure, so there's no reason to be passing around pointers to acl_t in acl_entry_count() and acl_is_minimal(). This commit changes their signatures and call sites. ---