aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2014-12-28 01:22:50 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2014-12-28 01:25:10 -0500
commitd58de5564566705d372fc49ba7efd0a954a03756 (patch)
tree8d8d90bb0ba4c2c71181d1fb5db2fb2525c42779 /src/redshift.c
parentredshift: Properly handle errors in sigaction (diff)
downloadredshift-ng-d58de5564566705d372fc49ba7efd0a954a03756.tar.gz
redshift-ng-d58de5564566705d372fc49ba7efd0a954a03756.tar.bz2
redshift-ng-d58de5564566705d372fc49ba7efd0a954a03756.tar.xz
redshift: Add enum member for unknown period_t (PERIOD_NONE)
Diffstat (limited to 'src/redshift.c')
-rw-r--r--src/redshift.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/redshift.c b/src/redshift.c
index 8950097..b09f39c 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -299,13 +299,15 @@ typedef enum {
/* Periods of day. */
typedef enum {
- PERIOD_DAYTIME = 0,
+ PERIOD_NONE = 0,
+ PERIOD_DAYTIME,
PERIOD_NIGHT,
PERIOD_TRANSITION
} period_t;
/* Names of periods of day */
static const char *period_names[] = {
+ N_("None"),
N_("Daytime"),
N_("Night"),
N_("Transition")
@@ -374,6 +376,7 @@ static void
print_period(period_t period, double transition)
{
switch (period) {
+ case PERIOD_NONE:
case PERIOD_NIGHT:
case PERIOD_DAYTIME:
printf(_("Period: %s\n"), gettext(period_names[period]));
@@ -1436,7 +1439,7 @@ main(int argc, char *argv[])
/* Save previous colors so we can avoid
printing status updates if the values
did not change. */
- period_t prev_period = -1;
+ period_t prev_period = PERIOD_NONE;
color_setting_t prev_interp =
{ -1, { NAN, NAN, NAN }, NAN };