mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
6dd91b3682
Let's employ coccinelle to fix everything up automatically for us.
29 lines
391 B
Plaintext
29 lines
391 B
Plaintext
@@
|
|
expression x, y;
|
|
@@
|
|
- if (x < y)
|
|
- return -1;
|
|
- if (x > y)
|
|
- return 1;
|
|
- return 0;
|
|
+ return CMP(x, y);
|
|
@@
|
|
expression x, y;
|
|
@@
|
|
- if (x < y)
|
|
- return -1;
|
|
- else if (x > y)
|
|
- return 1;
|
|
- return 0;
|
|
+ return CMP(x, y);
|
|
@@
|
|
expression x, y;
|
|
@@
|
|
- if (x < y)
|
|
- return -1;
|
|
- else if (x > y)
|
|
- return 1;
|
|
- else
|
|
- return 0;
|
|
+ return CMP(x, y);
|