Skip to content
Commit 3cc2aff1 authored by Lennart Poettering's avatar Lennart Poettering
Browse files

tree-wide: don't do assignments within if checks

Turn this:

       if ((r = foo()) < 0) { ...

into this:

       r = foo();
       if (r < 0) { ...
parent 7f6e12b0
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment