mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 08:56:15 +09:00
The variable is not useful outside of the loop (it'll always be null after the loop is finished), so we can declare it inline in the loop. This saves one variable declaration and reduces the chances that somebody tries to use the variable outside of the loop. For consistency, 'de' is used everywhere for the var name.