diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2014-04-22 11:44:54 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2014-04-22 11:44:54 +0200 |
commit | 4d8ad7d87072bc1631d0b949930f4869e56b7b99 (patch) | |
tree | 304498a232ad457ff6937d94266e3a86c5d3eab5 /src/ui_act.h | |
parent | 274324aab47c51d6c07ace5e219d196077c3e5d1 (diff) | |
download | pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.gz pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.tar.bz2 pianobar-4d8ad7d87072bc1631d0b949930f4869e56b7b99.zip |
Fix include guards
Macros starting with _ are reserved (see
http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html).
Fixes #440.
Diffstat (limited to 'src/ui_act.h')
-rw-r--r-- | src/ui_act.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui_act.h b/src/ui_act.h index bd2cf88..a9ce4ee 100644 --- a/src/ui_act.h +++ b/src/ui_act.h @@ -21,8 +21,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef _UI_ACT_H -#define _UI_ACT_H +#ifndef SRC_UI_ACT_H_1FEFTC06 +#define SRC_UI_ACT_H_1FEFTC06 #include <piano.h> @@ -62,4 +62,4 @@ BarUiActCallback(BarUiActVolUp); BarUiActCallback(BarUiActManageStation); BarUiActCallback(BarUiActVolReset); -#endif /* _UI_ACT_H */ +#endif /* SRC_UI_ACT_H_1FEFTC06 */ |