diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-11 20:36:41 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-10-13 18:09:28 -0700 |
commit | b27acd687800499324381648036edd098c996524 (patch) | |
tree | 3197172546126fff94e8918ad2244f0788f60ee7 /src/gamma-dummy.c | |
parent | Move module struct definitions to separate files (diff) | |
download | redshift-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.c | 3 |
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; } |