diff options
Diffstat (limited to 'src/shared/path-util.c')
-rw-r--r-- | src/shared/path-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/path-util.c b/src/shared/path-util.c index 2cc2b2d4b7..fc42a704b7 100644 --- a/src/shared/path-util.c +++ b/src/shared/path-util.c @@ -464,9 +464,9 @@ int find_binary(const char *name, char **filename) { } } -bool paths_check_timestamp(char **paths, usec_t *timestamp, bool update) { +bool paths_check_timestamp(const char* const* paths, usec_t *timestamp, bool update) { bool changed = false; - char **i; + const char* const* i; assert(timestamp); |