1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-21 02:50:18 +03:00

generator: insert parentheses to make the code clearer

Silence CID#1563781.

(cherry picked from commit 3428c4b818fcd303997deb0dbcaf7cea60942bcf)
This commit is contained in:
Yu Watanabe 2025-02-19 02:45:30 +09:00 committed by Luca Boccassi
parent dce29c0c5f
commit 3ba2ed7e03

View File

@ -995,5 +995,5 @@ bool generator_soft_rebooted(void) {
return (cached = false);
}
return (cached = u > 0);
return (cached = (u > 0));
}