diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:30:35 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-28 01:30:35 -0500 |
commit | 4a572e85e904ef4876544f1e6d9dec9d1a13b895 (patch) | |
tree | 3c85bc99d5d3fefa5b46a6e1c513b219bd59ea9f /src/redshift.c | |
parent | redshift: Add enum member for unknown period_t (PERIOD_NONE) (diff) | |
download | redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.gz redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.bz2 redshift-ng-4a572e85e904ef4876544f1e6d9dec9d1a13b895.tar.xz |
redshift: Move period_t to header
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/redshift.c b/src/redshift.c index b09f39c..11b7f34 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -297,14 +297,6 @@ typedef enum { PROGRAM_MODE_MANUAL } program_mode_t; -/* Periods of day. */ -typedef enum { - PERIOD_NONE = 0, - PERIOD_DAYTIME, - PERIOD_NIGHT, - PERIOD_TRANSITION -} period_t; - /* Names of periods of day */ static const char *period_names[] = { N_("None"), |