summaryrefslogtreecommitdiffstats
path: root/coccinelle/no-if-assignments.cocci (follow)
Commit message (Collapse)AuthorAgeFilesLines
* tree-wide: don't do assignments within if checksLennart Poettering2015-09-091-0/+20
Turn this: if ((r = foo()) < 0) { ... into this: r = foo(); if (r < 0) { ...