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/backend-direct.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 '')
-rw-r--r-- | src/backend-direct.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend-direct.c b/src/backend-direct.c index 37c82c6..f92cb7d 100644 --- a/src/backend-direct.c +++ b/src/backend-direct.c @@ -256,38 +256,38 @@ direct_create(struct gamma_state **state_out, int method, const char *method_nam void -direct_print_help(FILE *f, int method) +direct_print_help(int method) { struct libgamma_method_capabilities caps; if (libgamma_method_capabilities(&caps, sizeof(caps), method)) { - fprintf(f, _("Adjustment method not available\n")); - fprintf(f, "\n"); + printf(_("Adjustment method not available\n")); + printf("\n"); return; } if (caps.multiple_sites) - fprintf(f, " display=%s %s\n", _("NAME "), _("Display server instance to apply adjustments to")); + printf(" display=%s %s\n", _("NAME "), _("Display server instance to apply adjustments to")); if (caps.multiple_partitions && caps.partitions_are_graphics_cards) { /* TRANSLATORS: "N" represents "ordinal"; right-pad with spaces to preserve display width */ - fprintf(f, " card=%s %s\n", _("N "), _("Graphics card to apply adjustments to")); + printf(" card=%s %s\n", _("N "), _("Graphics card to apply adjustments to")); } else if (caps.multiple_partitions) { /* TRANSLATORS: "N" represents "ordinal"; right-pad with spaces to preserve display width */ - fprintf(f, " screen=%s %s\n", _("N "), _("List of comma-separated X screens to apply adjustments to")); + printf(" screen=%s %s\n", _("N "), _("List of comma-separated X screens to apply adjustments to")); } if (caps.multiple_crtcs) { /* TRANSLATORS: "N" represents "number"; right-pad with spaces to preserve display width */ - fprintf(f, " crtc=%s %s\n", _("N "), _("List of comma-separated CRTCs to apply adjustments to")); + printf(" crtc=%s %s\n", _("N "), _("List of comma-separated CRTCs to apply adjustments to")); } if (caps.multiple_crtcs && (caps.crtc_information & LIBGAMMA_CRTC_INFO_EDID)) { - fprintf(f, " edid=%s %s\n", _("EDID "), _("List of comma-separated EDIDS of monitors to apply " + printf(" edid=%s %s\n", _("EDID "), _("List of comma-separated EDIDS of monitors to apply " "adjustments to, enter `list' to list available monitors")); } if (caps.multiple_sites || caps.multiple_partitions || caps.multiple_crtcs) - fprintf(f, "\n"); + printf("\n"); } |