diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 20:59:57 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 20:59:57 +0100 |
commit | 259604f63dba5f958b879813d1eaed9a59991d1e (patch) | |
tree | 15aec3fced6f925fb3dd9d6c5907cf5aaa2a22d0 /src/gamma-dummy.c | |
parent | Mention after fork that SIGCHLD is ignored (diff) | |
download | redshift-ng-259604f63dba5f958b879813d1eaed9a59991d1e.tar.gz redshift-ng-259604f63dba5f958b879813d1eaed9a59991d1e.tar.bz2 redshift-ng-259604f63dba5f958b879813d1eaed9a59991d1e.tar.xz |
Fix warnings
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-dummy.c')
-rw-r--r-- | src/gamma-dummy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gamma-dummy.c b/src/gamma-dummy.c index d87c2dd..d01044d 100644 --- a/src/gamma-dummy.c +++ b/src/gamma-dummy.c @@ -29,6 +29,8 @@ gamma_dummy_init(struct gamma_state **state) static int gamma_dummy_start(struct gamma_state *state, enum program_mode mode) { + (void) state; + (void) mode; fputs(_("WARNING: Using dummy gamma method! Display will not be affected by this gamma method.\n"), stderr); return 0; } @@ -36,11 +38,13 @@ gamma_dummy_start(struct gamma_state *state, enum program_mode mode) static void gamma_dummy_restore(struct gamma_state *state) { + (void) state; } static void gamma_dummy_free(struct gamma_state *state) { + (void) state; } static void @@ -53,6 +57,8 @@ gamma_dummy_print_help(FILE *f) static int gamma_dummy_set_option(struct gamma_state *state, const char *key, const char *value) { + (void) state; + (void) value; fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; } @@ -61,6 +67,8 @@ static int gamma_dummy_set_temperature( struct gamma_state *state, const struct color_setting *setting, int preserve) { + (void) state; + (void) preserve; printf(_("Temperature: %i\n"), setting->temperature); return 0; } |