aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2024-05-08 17:13:00 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2024-05-08 17:13:00 -0400
commit3752e818b5a5a3a315d05be202137add74b9d265 (patch)
tree49f56db99d382f1790b5e7f7fd197b7fb289af5b
parent0e316817de893e3af63ac7f92f4154e9fb3c21af (diff)
downloadstasis-3752e818b5a5a3a315d05be202137add74b9d265.tar.gz
Change signature
* rootdirs is no longer a const
-rw-r--r--src/omc_indexer.c2
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));