]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/swap-two.cocci
test: Disable LUKS devices from initramfs in QEMU tests
[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);