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/gamma-vidmode.c | |
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/gamma-vidmode.c')
-rw-r--r-- | src/gamma-vidmode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gamma-vidmode.c b/src/gamma-vidmode.c index 634fc37..5c2bdf3 100644 --- a/src/gamma-vidmode.c +++ b/src/gamma-vidmode.c @@ -35,11 +35,11 @@ vidmode_create(struct gamma_state **state_out) static void -vidmode_print_help(FILE *f) +vidmode_print_help(void) { - fputs(_("Adjust gamma ramps with the X VidMode extension.\n"), f); - fputs("\n", f); - direct_print_help(f, LIBGAMMA_METHOD_X_VIDMODE); + printf(_("Adjust gamma ramps with the X VidMode extension.\n")); + printf("\n"); + direct_print_help(LIBGAMMA_METHOD_X_VIDMODE); } |