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/config.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/config.c')
-rw-r--r-- | src/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c index dc6e47c..5261c10 100644 --- a/src/config.c +++ b/src/config.c @@ -756,7 +756,7 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[]) /* Print provider help if arg is `help'. */ if (settings->provider_args && !strcasecmp(settings->provider_args, "help")) { - settings->provider->print_help(stdout); + settings->provider->print_help(); exit(0); } break; @@ -782,7 +782,7 @@ load_from_cmdline(struct settings *settings, int argc, char *argv[]) /* Print method help if arg is `help'. */ if (settings->method_args && !strcasecmp(settings->method_args, "help")) { - settings->method->print_help(stdout); + settings->method->print_help(); exit(0); } break; |