From 6ca2ad49530d613d098706b518ec1309efbf2fcb Mon Sep 17 00:00:00 2001 From: Ole André Vadla Ravnås Date: Wed, 7 May 2008 09:52:34 +0000 Subject: gst/rtp/gstrtpilbcpay.c: Added missing stdlib.h include for strtol(), and made include ordering and style consistent ... Original commit message from CVS: * gst/rtp/gstrtpilbcpay.c: Added missing stdlib.h include for strtol(), and made include ordering and style consistent with the corresponding depayloader. --- gst/rtp/gstrtpilbcpay.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gst/rtp/gstrtpilbcpay.c b/gst/rtp/gstrtpilbcpay.c index 3ac00f52..9a241c5a 100644 --- a/gst/rtp/gstrtpilbcpay.c +++ b/gst/rtp/gstrtpilbcpay.c @@ -18,11 +18,12 @@ */ #ifdef HAVE_CONFIG_H -#include "config.h" +# include "config.h" #endif -#include "gstrtpilbcpay.h" +#include #include +#include "gstrtpilbcpay.h" /* elementfactory information */ static GstElementDetails gst_rtpilbcpay_details = { -- cgit