Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
19f542a3
Commit
19f542a3
authored
Oct 01, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a bunch of gcc warnings
parent
ffb37ffb
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
17 additions
and
10 deletions
+17
-10
modules/access/cdda.c
modules/access/cdda.c
+1
-0
modules/access/http.c
modules/access/http.c
+1
-1
modules/access/smb.c
modules/access/smb.c
+2
-0
modules/access/v4l.c
modules/access/v4l.c
+1
-0
modules/demux/playlist/asx.c
modules/demux/playlist/asx.c
+1
-0
modules/demux/playlist/sgimb.c
modules/demux/playlist/sgimb.c
+1
-0
modules/gui/ncurses.c
modules/gui/ncurses.c
+1
-0
modules/misc/dummy/interface.c
modules/misc/dummy/interface.c
+0
-5
modules/misc/gnutls.c
modules/misc/gnutls.c
+1
-0
modules/misc/profile_parser.c
modules/misc/profile_parser.c
+2
-2
modules/misc/rtsp.c
modules/misc/rtsp.c
+1
-0
modules/services_discovery/bonjour.c
modules/services_discovery/bonjour.c
+1
-0
modules/services_discovery/podcast.c
modules/services_discovery/podcast.c
+1
-0
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+1
-0
modules/services_discovery/shout.c
modules/services_discovery/shout.c
+0
-2
modules/video_filter/mosaic.c
modules/video_filter/mosaic.c
+1
-0
modules/visualization/visual/visual.c
modules/visualization/visual/visual.c
+1
-0
No files found.
modules/access/cdda.c
View file @
19f542a3
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/access/http.c
View file @
19f542a3
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <string.h>
#include <string.h>
...
...
modules/access/smb.c
View file @
19f542a3
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdlib.h>
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/access/v4l.c
View file @
19f542a3
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdio.h>
#include <string.h>
#include <string.h>
...
...
modules/demux/playlist/asx.c
View file @
19f542a3
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <ctype.h>
/* isspace() */
#include <ctype.h>
/* isspace() */
...
...
modules/demux/playlist/sgimb.c
View file @
19f542a3
...
@@ -97,6 +97,7 @@
...
@@ -97,6 +97,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/gui/ncurses.c
View file @
19f542a3
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <string.h>
#include <errno.h>
/* ENOMEM */
#include <errno.h>
/* ENOMEM */
...
...
modules/misc/dummy/interface.c
View file @
19f542a3
...
@@ -30,11 +30,6 @@
...
@@ -30,11 +30,6 @@
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc/intf.h>
#include <vlc/intf.h>
/*****************************************************************************
* Local prototypes.
*****************************************************************************/
static
void
Run
(
intf_thread_t
*
);
/*****************************************************************************
/*****************************************************************************
* Open: initialize dummy interface
* Open: initialize dummy interface
*****************************************************************************/
*****************************************************************************/
...
...
modules/misc/gnutls.c
View file @
19f542a3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
#include <time.h>
#include <time.h>
...
...
modules/misc/profile_parser.c
View file @
19f542a3
...
@@ -43,8 +43,8 @@ static int Open( vlc_object_t *p_this )
...
@@ -43,8 +43,8 @@ static int Open( vlc_object_t *p_this )
xml_t
*
p_xml
;
xml_t
*
p_xml
;
xml_reader_t
*
p_reader
;
xml_reader_t
*
p_reader
;
int
i_ret
;
int
i_ret
;
char
*
psz_elname
;
char
*
psz_elname
=
NULL
;
/* Open the profile and get a XML reader from it */
/* Open the profile and get a XML reader from it */
if
(
!
p_stream
)
if
(
!
p_stream
)
{
{
...
...
modules/misc/rtsp.c
View file @
19f542a3
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
#include <stdlib.h>
#include <errno.h>
#include <errno.h>
...
...
modules/services_discovery/bonjour.c
View file @
19f542a3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*****************************************************************************
/*****************************************************************************
* Includes
* Includes
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/services_discovery/podcast.c
View file @
19f542a3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*****************************************************************************
/*****************************************************************************
* Includes
* Includes
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/services_discovery/sap.c
View file @
19f542a3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*****************************************************************************
/*****************************************************************************
* Includes
* Includes
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
...
...
modules/services_discovery/shout.c
View file @
19f542a3
...
@@ -103,8 +103,6 @@ struct services_discovery_sys_t
...
@@ -103,8 +103,6 @@ struct services_discovery_sys_t
*****************************************************************************/
*****************************************************************************/
/* Main functions */
/* Main functions */
static
void
Run
(
services_discovery_t
*
p_intf
);
static
int
OpenRadio
(
vlc_object_t
*
p_this
)
static
int
OpenRadio
(
vlc_object_t
*
p_this
)
{
{
return
Open
(
p_this
,
RADIO
);
return
Open
(
p_this
,
RADIO
);
...
...
modules/video_filter/mosaic.c
View file @
19f542a3
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <string.h>
#include <string.h>
#include <math.h>
#include <math.h>
...
...
modules/visualization/visual/visual.c
View file @
19f542a3
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
/*****************************************************************************
/*****************************************************************************
* Preamble
* Preamble
*****************************************************************************/
*****************************************************************************/
#define _GNU_SOURCE
#include <stdlib.h>
/* malloc(), free() */
#include <stdlib.h>
/* malloc(), free() */
#include <vlc/vlc.h>
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/vout.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment