diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:22:50 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:25:10 -0500 |
commit | d58de5564566705d372fc49ba7efd0a954a03756 (patch) | |
tree | 8d8d90bb0ba4c2c71181d1fb5db2fb2525c42779 /src/redshift.c | |
parent | redshift: Properly handle errors in sigaction (diff) | |
download | redshift-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.c | 7 |
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 }; |