tree-wide: don't do assignments within if checks
Turn this: if ((r = foo()) < 0) { ... into this: r = foo(); if (r < 0) { ...
Loading
Please register or sign in to comment
Turn this: if ((r = foo()) < 0) { ... into this: r = foo(); if (r < 0) { ...