aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-w32gdi.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-06 16:57:49 +0100
committerMattias Andrée <m@maandree.se>2025-03-06 16:57:49 +0100
commit4c3cd7fde636946bb806d9b2d025c59418fa4e85 (patch)
tree5fccfab94b4ee535c4627be80a9ea92e5ae291b2 /src/gamma-w32gdi.c
parentStyle (diff)
downloadredshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.gz
redshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.bz2
redshift-ng-4c3cd7fde636946bb806d9b2d025c59418fa4e85.tar.xz
style and some minor fixes
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/gamma-w32gdi.c')
-rw-r--r--src/gamma-w32gdi.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/gamma-w32gdi.c b/src/gamma-w32gdi.c
index a252e0a..5beb1a9 100644
--- a/src/gamma-w32gdi.c
+++ b/src/gamma-w32gdi.c
@@ -50,14 +50,14 @@ w32gdi_start(struct gamma_state *state, program_mode_t mode)
/* Open device context */
hDC = GetDC(NULL);
if (!hDC) {
- weprintf(_("Unable to open device context.\n"));
+ weprintf(_("Unable to open device context."));
return -1;
}
/* Check support for gamma ramps */
cmcap = GetDeviceCaps(hDC, COLORMGMTCAPS);
if (cmcap != CM_GAMMA_RAMP) {
- weprintf(_("Display device does not support gamma ramps.\n"));
+ weprintf(_("Display device does not support gamma ramps."));
return -1;
}
@@ -66,7 +66,7 @@ w32gdi_start(struct gamma_state *state, program_mode_t mode)
/* Save current gamma ramps so we can restore them at program exit */
if (!GetDeviceGammaRamp(hDC, state->saved_ramps)) {
- weprintf(_("Unable to save current gamma ramp.\n"));
+ weprintf(_("Unable to save current gamma ramp."));
ReleaseDC(NULL, hDC);
return -1;
}
@@ -80,9 +80,7 @@ w32gdi_start(struct gamma_state *state, program_mode_t mode)
static void
w32gdi_free(struct gamma_state *state)
{
- /* Free saved ramps */
free(state->saved_ramps);
-
free(state);
}
@@ -98,10 +96,9 @@ static int
w32gdi_set_option(struct gamma_state *state, const char *key, const char *value)
{
if (!strcasecmp(key, "preserve")) {
- weprintf(_("Parameter `%s` is now always on; Use the `%s` "
- "command-line option to disable.\n"), key, "-P");
+ weprintf(_("Parameter `%s' is now always on; use the `%s' command-line option to disable."), key, "-P");
} else {
- weprintf(_("Unknown method parameter: `%s'.\n"), key);
+ weprintf(_("Unknown method parameter: `%s'."), key);
return -1;
}
@@ -117,7 +114,7 @@ w32gdi_restore(struct gamma_state *state)
/* Open device context */
hDC = GetDC(NULL);
if (!hDC) {
- fputs(_("Unable to open device context.\n"), stderr);
+ weprintf(_("Unable to open device context."));
return;
}
@@ -129,7 +126,7 @@ w32gdi_restore(struct gamma_state *state)
if (SetDeviceGammaRamp(hDC, state->saved_ramps))
goto done;
}
- weprintf(_("Unable to restore gamma ramps.\n"));
+ weprintf(_("Unable to restore gamma ramps."));
done:
/* Release device context */
@@ -147,7 +144,7 @@ w32gdi_set_temperature(
/* Open device context */
hDC = GetDC(NULL);
if (!hDC) {
- weprintf(_("Unable to open device context.\n"));
+ weprintf(_("Unable to open device context."));
return -1;
}
@@ -182,7 +179,7 @@ w32gdi_set_temperature(
if (SetDeviceGammaRamp(hDC, gamma_ramps))
goto done;
}
- weprintf(_("Unable to set gamma ramps.\n"));
+ weprintf(_("Unable to set gamma ramps."));
free(gamma_ramps);
ReleaseDC(NULL, hDC);
return -1;