diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-08 17:31:30 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-19 16:51:14 +0200 |
commit | 3c4e3031367fb0a2b754fd533d4f38ce8a6e9586 (patch) | |
tree | 3decb7035479b2c2d4a356bc25b0ad7f6137e991 /src/shared/dropin.c | |
parent | f4c43a8115d73c67cb04987f5ad34116aff9fbe2 (diff) | |
download | systemd-3c4e3031367fb0a2b754fd533d4f38ce8a6e9586.tar.gz |
basic/set: constify operations which don't modify Set
No functional change, but it's nicer to the reader.
Diffstat (limited to 'src/shared/dropin.c')
-rw-r--r-- | src/shared/dropin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/dropin.c b/src/shared/dropin.c index 409eef21ff..411f1c2f1c 100644 --- a/src/shared/dropin.c +++ b/src/shared/dropin.c @@ -228,7 +228,7 @@ int unit_file_find_dropin_paths( Set *unit_path_cache, const char *dir_suffix, const char *file_suffix, - Set *names, + const Set *names, char ***ret) { _cleanup_strv_free_ char **dirs = NULL; |