Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
74bc4880
Commit
74bc4880
authored
Sep 17, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix flexible array usage gcc-ism
parent
d2deac2c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
modules/services_discovery/sap.c
modules/services_discovery/sap.c
+1
-1
src/misc/block.c
src/misc/block.c
+1
-1
src/misc/win32_specific.c
src/misc/win32_specific.c
+1
-1
src/stream_output/sap.c
src/stream_output/sap.c
+1
-1
No files found.
modules/services_discovery/sap.c
View file @
74bc4880
...
...
@@ -212,7 +212,7 @@ struct sdp_t
struct
attribute_t
{
const
char
*
value
;
char
name
[
0
];
char
name
[];
};
struct
sap_announce_t
...
...
src/misc/block.c
View file @
74bc4880
...
...
@@ -40,7 +40,7 @@ struct block_sys_t
{
block_t
self
;
size_t
i_allocated_buffer
;
uint8_t
p_allocated_buffer
[
0
];
uint8_t
p_allocated_buffer
[];
};
#ifndef NDEBUG
...
...
src/misc/win32_specific.c
View file @
74bc4880
...
...
@@ -130,7 +130,7 @@ typedef struct
{
int
argc
;
int
enqueue
;
char
data
[
0
];
char
data
[];
}
vlc_ipc_data_t
;
void
system_Configure
(
libvlc_int_t
*
p_this
,
int
*
pi_argc
,
const
char
*
ppsz_argv
[]
)
...
...
src/stream_output/sap.c
View file @
74bc4880
...
...
@@ -53,7 +53,7 @@ typedef struct sap_session_t
struct
sap_session_t
*
next
;
const
session_descriptor_t
*
p_sd
;
size_t
length
;
uint8_t
data
[
0
];
uint8_t
data
[];
}
sap_session_t
;
/* A SAP announce address. For each of these, we run the
...
...
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