Systemd/coccinelle/errno-check.cocci

11 lines
78 B
Plaintext

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