]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/bool-cast.cocci
util: introduce in_addr_port_ifindex_name_from_string_auto() and in_addr_port_ifindex...
[thirdparty/systemd.git] / coccinelle / bool-cast.cocci
1 @@
2 bool b;
3 expression y;
4 @@
5 - b = !!(y);
6 + b = y;
7 @@
8 bool b;
9 expression y;
10 @@
11 - b = !!y;
12 + b = y;