summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2010-08-20 16:40:22 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2010-08-20 16:40:22 +0200
commitba6253a26a9ae21b5a65e8d9ece6bddbdd521b97 (patch)
tree52bbf4c5d48ca9f4249b2dc43b8e556de25e8192
parent5a906dee16177d9427520c8d6cd391d5111815b2 (diff)
Fixed include guards.
-rw-r--r--command_service.h4
-rw-r--r--commands.h4
-rw-r--r--decode_converter.h4
-rw-r--r--decoder.h4
-rw-r--r--encode_converter.h4
-rw-r--r--encoder.h4
-rw-r--r--httpd.h4
-rw-r--r--httpd_commands.h4
-rw-r--r--music.h4
-rw-r--r--tag.h4
-rw-r--r--transcode.h4
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 <glib.h>
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 <glib.h>
#include <gio/gio.h>
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 <glib.h>
#include <gio/gio.h>
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 <glib.h>
#include <gio/gio.h>
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 <glib.h>
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 <gio/gio.h>
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 <glib.h>
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"