From ba6253a26a9ae21b5a65e8d9ece6bddbdd521b97 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Fri, 20 Aug 2010 16:40:22 +0200 Subject: Fixed include guards. --- command_service.h | 4 ++-- commands.h | 4 ++-- decode_converter.h | 4 ++-- decoder.h | 4 ++-- encode_converter.h | 4 ++-- encoder.h | 4 ++-- httpd.h | 4 ++-- httpd_commands.h | 4 ++-- music.h | 4 ++-- tag.h | 4 ++-- transcode.h | 4 ++-- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/command_service.h b/command_service.h index 2e59f9c..5a86d32 100644 --- a/command_service.h +++ b/command_service.h @@ -1,5 +1,5 @@ -#ifndef _COMMAND_SERVICE_H_ -#define _COMMAND_SERVICE_H_ +#ifndef COMMAND_SERVICE_H +#define COMMAND_SERVICE_H #include diff --git a/commands.h b/commands.h index 4f5c24c..ec0e0b2 100644 --- a/commands.h +++ b/commands.h @@ -1,5 +1,5 @@ -#ifndef _COMMANDS_H_ -#define _COMMANDS_H_ +#ifndef COMMANDS_H +#define COMMANDS_H #include #include diff --git a/decode_converter.h b/decode_converter.h index 47106c9..5523541 100644 --- a/decode_converter.h +++ b/decode_converter.h @@ -1,5 +1,5 @@ -#ifndef _DECODE_CONVERTER_H_ -#define _DECODE_CONVERTER_H_ +#ifndef DECODE_CONVERTER_H +#define DECODE_CONVERTER_H #include "decoder.h" diff --git a/decoder.h b/decoder.h index 05e4aeb..36aa04d 100644 --- a/decoder.h +++ b/decoder.h @@ -1,5 +1,5 @@ -#ifndef _DECODER_H_ -#define _DECODER_H_ +#ifndef DECODER_H +#define DECODER_H #include #include diff --git a/encode_converter.h b/encode_converter.h index 739f593..054598e 100644 --- a/encode_converter.h +++ b/encode_converter.h @@ -1,5 +1,5 @@ -#ifndef _ENCODE_CONVERTER_H_ -#define _ENCODE_CONVERTER_H_ +#ifndef ENCODE_CONVERTER_H +#define ENCODE_CONVERTER_H #include "encoder.h" diff --git a/encoder.h b/encoder.h index c7848bf..68dc3fb 100644 --- a/encoder.h +++ b/encoder.h @@ -1,5 +1,5 @@ -#ifndef _ENCODER_H_ -#define _ENCODER_H_ +#ifndef ENCODER_H +#define ENCODER_H #include #include diff --git a/httpd.h b/httpd.h index 73b2c2f..35cd391 100644 --- a/httpd.h +++ b/httpd.h @@ -1,5 +1,5 @@ -#ifndef _HTTPD_H_ -#define _HTTPD_H_ +#ifndef HTTPD_H +#define HTTPD_H #include diff --git a/httpd_commands.h b/httpd_commands.h index 86b3da0..e76912c 100644 --- a/httpd_commands.h +++ b/httpd_commands.h @@ -1,5 +1,5 @@ -#ifndef _HTTPD_COMMANDS_H_ -#define _HTTPD_COMMANDS_H_ +#ifndef HTTPD_COMMANDS_H +#define HTTPD_COMMANDS_H #include diff --git a/music.h b/music.h index 2b08c39..5ad5971 100644 --- a/music.h +++ b/music.h @@ -1,5 +1,5 @@ -#ifndef _MUSIC_H_ -#define _MUSIC_H_ +#ifndef MUSIC_H +#define MUSIC_H #include "tag.h" diff --git a/tag.h b/tag.h index e0e5a7d..279d2bd 100644 --- a/tag.h +++ b/tag.h @@ -1,5 +1,5 @@ -#ifndef _TAG_H_ -#define _TAG_H_ +#ifndef TAG_H +#define TAG_H #include diff --git a/transcode.h b/transcode.h index 69f19f3..7fb5cd9 100644 --- a/transcode.h +++ b/transcode.h @@ -1,5 +1,5 @@ -#ifndef _TRANSCODE_H_ -#define _TRANSCODE_H_ +#ifndef TRANSCODE_H +#define TRANSCODE_H #include "decoder.h" #include "encoder.h" -- cgit v1.2.3