diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-23 19:25:39 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-23 19:25:39 +0100 |
commit | 0644dfde1f691df65851940738aad522857b71aa (patch) | |
tree | 21c3e7756d9acb1a67884cb1fce14d2e2319f185 /src/common.h | |
parent | Add ability to select multiple screens (diff) | |
download | redshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.gz redshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.bz2 redshift-ng-0644dfde1f691df65851940738aad522857b71aa.tar.xz |
Clean up
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index 1b352f2..fa1a0f2 100644 --- a/src/common.h +++ b/src/common.h @@ -957,10 +957,8 @@ struct gamma_method { /** * Print help on options for the adjustment method - * - * @param f Output sink */ - void (*print_help)(FILE *f); + void (*print_help)(void); /** * Finalise option-dependent initialisation and connections @@ -1054,10 +1052,8 @@ struct location_provider { /** * Print help on options for the location provider - * - * @param f Output sink */ - void (*print_help)(FILE *f); + void (*print_help)(void); /** * Finalise option-dependent initialisation and connections @@ -1204,10 +1200,9 @@ int direct_create(GAMMA_STATE **state_out, int method, const char *method_name); /** * Print help on options for the adjustment method using direct gamma adjustments * - * @param f Output sink * @param method libgamma constant for the adjustment method */ -void direct_print_help(FILE *f, int method); +void direct_print_help(int method); /** * Configure the adjustment method using direct gamma adjustments |