1
0
mirror of https://github.com/systemd/systemd synced 2024-07-05 17:39:42 +00:00
systemd/coccinelle/errno-check.cocci
2020-10-09 14:48:44 +02:00

11 lines
78 B
Plaintext

@@
constant c;
@@
(
- errno == -c
+ errno == c
|
- errno != -c
+ errno != c
)