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-dummy.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-dummy.c')
-rw-r--r-- | src/gamma-dummy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gamma-dummy.c b/src/gamma-dummy.c index ba9480a..de4b687 100644 --- a/src/gamma-dummy.c +++ b/src/gamma-dummy.c @@ -59,10 +59,10 @@ dummy_free(struct gamma_state *state) static void -dummy_print_help(FILE *f) +dummy_print_help(void) { - fputs(_("Does not affect the display but prints the color temperature to the terminal.\n"), f); - fputs("\n", f); + printf(_("Does not affect the display but prints the color temperature to the terminal.\n")); + printf("\n"); } |