diff src/audacious/eventqueue.h @ 4557:2eee464379dc

Clean up header multiple inclusion guards (e.g. #ifndef FOO_H/#define FOO_H)
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 19 May 2008 01:29:46 +0300
parents 6f6982108001
children cf6711eeb12f
line wrap: on
line diff
--- a/src/audacious/eventqueue.h	Sun May 18 21:11:14 2008 +0300
+++ b/src/audacious/eventqueue.h	Mon May 19 01:29:46 2008 +0300
@@ -22,8 +22,8 @@
 
 #include "audacious/hook.h"
 
-#ifndef __AUDACIOUS_EVENTQUEUE_H__
-#define __AUDACIOUS_EVENTQUEUE_H__
+#ifndef AUDACIOUS_EVENTQUEUE_H
+#define AUDACIOUS_EVENTQUEUE_H
 
 typedef struct {
     gchar *name;
@@ -33,4 +33,4 @@
 void event_queue(const gchar *name, gpointer user_data);
 void event_queue_timed(gint time, const gchar *name, gpointer user_data);
 
-#endif
+#endif /* AUDACIOUS_EVENTQUEUE_H */