mirror of
https://github.com/systemd/systemd.git
synced 2025-01-30 01:47:42 +03:00
core: fix warning about unsigned variable (#5935)
Fixup for d8c92e8bc7351f553936b5235e1922c18ebd817a.
This commit is contained in:
parent
5efd9f72ca
commit
52511fae7b
@ -3236,7 +3236,8 @@ int exec_context_load_environment(Unit *unit, const ExecContext *c, char ***l) {
|
||||
|
||||
STRV_FOREACH(i, c->environment_files) {
|
||||
char *fn;
|
||||
int k, n;
|
||||
int k;
|
||||
unsigned n;
|
||||
bool ignore = false;
|
||||
char **p;
|
||||
_cleanup_globfree_ glob_t pglob = {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user