]> gitweb.michael.orlitzky.com - apply-default-acl.git/commitdiff
Eliminate unnecessary intermediate result variables.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 00:50:42 +0000 (19:50 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 19:10:28 +0000 (14:10 -0500)
Before this commit, most library calls looked something like...

  int result = foo(x,y);
  if (result == whatever) {
    ...
  }

and then the "result" variable was never used again. There's no need
to introduce the new name, and it probably only increases
confusion. So, this commit eliminates them all.


No differences found