aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-dummy.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-10-11 20:36:41 -0700
committerJon Lund Steffensen <jonlst@gmail.com>2017-10-13 18:09:28 -0700
commitb27acd687800499324381648036edd098c996524 (patch)
tree3197172546126fff94e8918ad2244f0788f60ee7 /src/gamma-dummy.c
parentMove module struct definitions to separate files (diff)
downloadredshift-ng-b27acd687800499324381648036edd098c996524.tar.gz
redshift-ng-b27acd687800499324381648036edd098c996524.tar.bz2
redshift-ng-b27acd687800499324381648036edd098c996524.tar.xz
Allocate module data in init functions
Diffstat (limited to 'src/gamma-dummy.c')
-rw-r--r--src/gamma-dummy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gamma-dummy.c b/src/gamma-dummy.c
index dadc014..25e723f 100644
--- a/src/gamma-dummy.c
+++ b/src/gamma-dummy.c
@@ -31,8 +31,9 @@
static int
-gamma_dummy_init(void *state)
+gamma_dummy_init(void **state)
{
+ *state = NULL;
return 0;
}