1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-12-23 17:34:00 +03:00
systemd-stable/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
)