summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-01-23 17:05:32 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-01-23 17:05:32 +0000
commit8cc6592938e8ab2fa0141e720550ed1b77fda878 (patch)
tree3ae2c7a74882bbfc6e92864aa9d4e98c3368f571
parent23b5b27e1c389494a91be3c7226b2bb0e8fb16c5 (diff)
gst/level/gstlevel.c: Use #include <math.h> instead of #include "math.h".
Original commit message from CVS: * gst/level/gstlevel.c: Use #include <math.h> instead of #include "math.h".
-rw-r--r--ChangeLog5
-rw-r--r--gst/level/gstlevel.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ff0c16af..6499b103 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-23 Sebastian Dröge <slomo@circular-chaos.org>
+
+ * gst/level/gstlevel.c:
+ Use #include <math.h> instead of #include "math.h".
+
2008-01-21 Jan Schmidt <Jan.Schmidt@sun.com>
* tests/check/Makefile.am:
diff --git a/gst/level/gstlevel.c b/gst/level/gstlevel.c
index e75cfb19..86cbd5a1 100644
--- a/gst/level/gstlevel.c
+++ b/gst/level/gstlevel.c
@@ -79,10 +79,10 @@
#include "config.h"
#endif
#include <string.h>
+#include <math.h>
#include <gst/gst.h>
#include <gst/audio/audio.h>
#include "gstlevel.h"
-#include "math.h"
GST_DEBUG_CATEGORY_STATIC (level_debug);
#define GST_CAT_DEFAULT level_debug