mirror of
https://github.com/systemd/systemd.git
synced 2026-08-12 22:17:19 +00:00
Using signed int literal '1' in left shift can lead to undefined
behavior if the shift amount causes overflow of a signed int. Use
UINT32_C(1) since the result is stored in a uint32_t variable.
CID#1568482
Follow-up for e9f781a5a4