mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
7f6e12b033
Replace this: if (fd >= 0) safe_close(fd); by this: safe_close(fd);
8 lines
88 B
Plaintext
8 lines
88 B
Plaintext
@@
|
|
expression fd;
|
|
@@
|
|
- if (fd >= 0) {
|
|
- fd = safe_close(fd);
|
|
- }
|
|
+ fd = safe_close(fd);
|