mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
12 lines
157 B
Plaintext
12 lines
157 B
Plaintext
|
@@
|
||
|
expression s;
|
||
|
@@
|
||
|
- if (empty_or_root(s))
|
||
|
- s = "/";
|
||
|
+ s = empty_to_root(s);
|
||
|
@@
|
||
|
expression s;
|
||
|
@@
|
||
|
- (empty_or_root(s) ? "/" : s)
|
||
|
+ empty_to_root(s)
|