diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-03-23 01:34:05 +0100 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-03-23 01:34:05 +0100 |
commit | 7685169385d590731009b83aaed6d449efb7e089 (patch) | |
tree | 8c281c8d81c2fe4e3c2c5ee6b7979f93aac97978 /src/redshift.h | |
parent | [redshift-gtk] Add BSD support to proc title setting (diff) | |
download | redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.gz redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.bz2 redshift-ng-7685169385d590731009b83aaed6d449efb7e089.tar.xz |
Fix #22: remove initial underscore from include guards
Diffstat (limited to 'src/redshift.h')
-rw-r--r-- | src/redshift.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/redshift.h b/src/redshift.h index c284fc1..3a87877 100644 --- a/src/redshift.h +++ b/src/redshift.h @@ -17,8 +17,8 @@ Copyright (c) 2013 Jon Lund Steffensen <jonlst@gmail.com> */ -#ifndef _REDSHIFT_REDSHIFT_H -#define _REDSHIFT_REDSHIFT_H +#ifndef REDSHIFT_REDSHIFT_H +#define REDSHIFT_REDSHIFT_H #include <stdio.h> #include <stdlib.h> @@ -91,4 +91,4 @@ typedef struct { } location_provider_t; -#endif /* ! _REDSHIFT_REDSHIFT_H */ +#endif /* ! REDSHIFT_REDSHIFT_H */ |