diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-08 17:13:00 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-08 17:13:00 -0400 |
commit | 3752e818b5a5a3a315d05be202137add74b9d265 (patch) | |
tree | 49f56db99d382f1790b5e7f7fd197b7fb289af5b | |
parent | 0e316817de893e3af63ac7f92f4154e9fb3c21af (diff) | |
download | stasis-3752e818b5a5a3a315d05be202137add74b9d265.tar.gz |
Change signature
* rootdirs is no longer a const
-rw-r--r-- | src/omc_indexer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/omc_indexer.c b/src/omc_indexer.c index b359a83..054a729 100644 --- a/src/omc_indexer.c +++ b/src/omc_indexer.c @@ -35,7 +35,7 @@ static void usage(char *name) { } -int indexer_combine_rootdirs(struct Delivery *ctx, const char *dest, const char **rootdirs, const size_t rootdirs_total) { +int indexer_combine_rootdirs(const char *dest, char **rootdirs, const size_t rootdirs_total) { char cmd[PATH_MAX]; memset(cmd, 0, sizeof(cmd)); |