summaryrefslogtreecommitdiff
path: root/src/modules/montage
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-05-30 15:23:25 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-05-30 15:23:25 -0700
commit58c2cb3cf89a9eb1fa572051881256594a36eaac (patch)
tree045fb9e25df1945e4310821ffcdfce70b83fba33 /src/modules/montage
parent249112803107d6341b5eb67caf5b730d3cc14d4f (diff)
til: s/til_module_randomize_setup/til_module_setup_randomize/
Mechanical rename just to make this consistent with til_module_setup()/til_module_setup_finalize() I should probably do a cleanup pass throughout the til APIs to standardize on a subject-verb-object or subject-object-verb order... Things have become a little inconsistent organically over time
Diffstat (limited to 'src/modules/montage')
-rw-r--r--src/modules/montage/montage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/montage/montage.c b/src/modules/montage/montage.c
index 301f323..08fd1b3 100644
--- a/src/modules/montage/montage.c
+++ b/src/modules/montage/montage.c
@@ -90,7 +90,7 @@ static til_module_context_t * montage_create_context(const til_module_t *module,
const til_module_t *module = ctxt->modules[i];
til_setup_t *setup = NULL;
- (void) til_module_randomize_setup(module, rand_r(&seed), &setup, NULL);
+ (void) til_module_setup_randomize(module, rand_r(&seed), &setup, NULL);
/* FIXME errors */
(void) til_module_create_context(module, stream, rand_r(&seed), ticks, 1, setup, &ctxt->contexts[i]);
© All Rights Reserved