Commit 19f542a3 authored by Antoine Cellerier's avatar Antoine Cellerier

Fix a bunch of gcc warnings

parent ffb37ffb
......@@ -31,6 +31,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <vlc/vlc.h>
......
......@@ -26,7 +26,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <vlc/vlc.h>
#include <string.h>
......
......@@ -24,6 +24,8 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <vlc/vlc.h>
......
......@@ -27,6 +27,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
......
......@@ -27,6 +27,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <ctype.h> /* isspace() */
......
......@@ -97,6 +97,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <vlc/vlc.h>
......
......@@ -27,6 +27,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <string.h>
#include <errno.h> /* ENOMEM */
......
......@@ -30,11 +30,6 @@
#include <vlc/vlc.h>
#include <vlc/intf.h>
/*****************************************************************************
* Local prototypes.
*****************************************************************************/
static void Run ( intf_thread_t * );
/*****************************************************************************
* Open: initialize dummy interface
*****************************************************************************/
......
......@@ -24,6 +24,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <errno.h>
#include <time.h>
......
......@@ -43,8 +43,8 @@ static int Open( vlc_object_t *p_this )
xml_t *p_xml;
xml_reader_t *p_reader;
int i_ret;
char *psz_elname;
char *psz_elname = NULL;
/* Open the profile and get a XML reader from it */
if( !p_stream )
{
......
......@@ -25,6 +25,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <errno.h>
......
......@@ -24,6 +24,7 @@
/*****************************************************************************
* Includes
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <vlc/vlc.h>
......
......@@ -24,6 +24,7 @@
/*****************************************************************************
* Includes
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <vlc/vlc.h>
......
......@@ -24,6 +24,7 @@
/*****************************************************************************
* Includes
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <vlc/vlc.h>
......
......@@ -103,8 +103,6 @@ struct services_discovery_sys_t
*****************************************************************************/
/* Main functions */
static void Run ( services_discovery_t *p_intf );
static int OpenRadio( vlc_object_t *p_this )
{
return Open( p_this, RADIO );
......
......@@ -25,6 +25,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <string.h>
#include <math.h>
......
......@@ -24,6 +24,7 @@
/*****************************************************************************
* Preamble
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h> /* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vout.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment