mirror of
https://github.com/systemd/systemd.git
synced 2026-08-11 17:45:59 +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 fore9f781a5a4(cherry picked from commit1929226e7e) (cherry picked from commit299afcbc49)