libselinux: avcstat: Clean up redundant condition
dcb314 reported this via https://github.com/SELinuxProject/selinux/issues/20 Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
This commit is contained in:
parent
cf8625be58
commit
dd8d5671e2
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ int main(int argc, char **argv)
|
|||
if (!parsed)
|
||||
die("unable to parse \'%s\': no data", avcstatfile);
|
||||
|
||||
if (cumulative || (!cumulative && !i))
|
||||
if (cumulative || !i)
|
||||
printf("%10Lu %10Lu %10Lu %10Lu %10Lu %10Lu\n",
|
||||
tot.lookups, tot.hits, tot.misses,
|
||||
tot.allocations, tot.reclaims, tot.frees);
|
||||
|
|
Loading…
Reference in a new issue