mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
15 lines
123 B
Plaintext
15 lines
123 B
Plaintext
|
@@
|
||
|
expression e;
|
||
|
statement s;
|
||
|
@@
|
||
|
- if (e == NULL)
|
||
|
+ if (!e)
|
||
|
s
|
||
|
@@
|
||
|
expression e;
|
||
|
statement s;
|
||
|
@@
|
||
|
- if (e != NULL)
|
||
|
+ if (e)
|
||
|
s
|