summaryrefslogtreecommitdiff
path: root/src/modules/stars/stars.c
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2023-05-11 11:10:48 -0700
committerVito Caputo <vcaputo@pengaru.com>2023-05-11 15:19:25 -0700
commitdede4eca3e2fca76f297b5f5b901434cb99eafb0 (patch)
tree7cdf8634a41af9003d2408ccf143fcaf40b2b729 /src/modules/stars/stars.c
parent7c8086020fb8d88f662a2b33b2dabef1b62ab39c (diff)
til_module_context: reference setup from module context
This just does the obvious pulling in of til_setup_t, holding the reference throughout the lifetime of the module context.
Diffstat (limited to 'src/modules/stars/stars.c')
-rw-r--r--src/modules/stars/stars.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/stars/stars.c b/src/modules/stars/stars.c
index 51bb1c9..845d945 100644
--- a/src/modules/stars/stars.c
+++ b/src/modules/stars/stars.c
@@ -72,7 +72,7 @@ static til_module_context_t * stars_create_context(const til_module_t *module, t
float z;
struct points* p_ptr = NULL;
- ctxt = til_module_context_new(module, sizeof(stars_context_t), stream, seed, ticks, n_cpus, path);
+ ctxt = til_module_context_new(module, sizeof(stars_context_t), stream, seed, ticks, n_cpus, path, setup);
if (!ctxt)
return NULL;
© All Rights Reserved