diff src/audacious/flow.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 6f4068a0f291
children
line wrap: on
line diff
--- a/src/audacious/flow.h	Sun May 18 21:11:14 2008 +0300
+++ b/src/audacious/flow.h	Mon May 19 01:29:46 2008 +0300
@@ -25,8 +25,8 @@
 
 #include "output.h"
 
-#ifndef __AUDACIOUS_FLOW_H__
-#define __AUDACIOUS_FLOW_H__
+#ifndef AUDACIOUS_FLOW_H
+#define AUDACIOUS_FLOW_H
 
 typedef struct {
     gint time;
@@ -59,4 +59,4 @@
 
 #define flow_destroy(flow) mowgli_object_unref(flow)
 
-#endif
+#endif /* AUDACIOUS_FLOW_H */