]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/swap-two.cocci
Merge pull request #12807 from keszybz/net-naming-scheme-yet-again
[thirdparty/systemd.git] / coccinelle / swap-two.cocci
CommitLineData
020b3949
LP
1@@
2expression x, y, z;
3@@
4- z = x;
5- x = y;
6- y = z;
7+ SWAP_TWO(x, y);