summaryrefslogtreecommitdiff
path: root/coccinelle/no-if-assignments.cocci
Commit message (Collapse)AuthorAgeFilesLines
* licensing: add spdx to our .cocci filesZbigniew Jędrzejewski-Szmek2021-10-011-0/+1
| | | | | Since those are chunks of code based on our codebase, it's easiest to use the same license.
* 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) { ...