aboutsummaryrefslogtreecommitdiffstats
path: root/src/backend-direct.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend-direct.c')
-rw-r--r--src/backend-direct.c18
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");
}