diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 20:36:07 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 20:36:07 +0100 |
commit | 61821405d8f48117b82ce839c7196eb68c2d8266 (patch) | |
tree | 8255c88a57d6ec4771284809763349f61267356f /src/gamma-coopgamma.c | |
parent | Just use double, no mixing in float (diff) | |
download | redshift-ng-61821405d8f48117b82ce839c7196eb68c2d8266.tar.gz redshift-ng-61821405d8f48117b82ce839c7196eb68c2d8266.tar.bz2 redshift-ng-61821405d8f48117b82ce839c7196eb68c2d8266.tar.xz |
Style and warnings
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-coopgamma.c')
-rw-r--r-- | src/gamma-coopgamma.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c index 387e29b..4e579c2 100644 --- a/src/gamma-coopgamma.c +++ b/src/gamma-coopgamma.c @@ -100,12 +100,14 @@ print_error(struct gamma_state *state) static int coopgamma_init(struct gamma_state **state) { - *state = malloc(sizeof(struct gamma_state)); + struct gamma_state *s; + struct signal_blockage signal_blockage; + + *state = malloc(sizeof(**state)); if (*state == NULL) return -1; - struct gamma_state *s = *state; + s = *state; - struct signal_blockage signal_blockage; memset(s, 0, sizeof(*s)); if (libcoopgamma_context_initialise(&s->ctx)) { perror("libcoopgamma_context_initialise"); |