Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
198220ee
Commit
198220ee
authored
Oct 02, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix signedness gcc warnings (and remove trailing spaces)
parent
03e8df65
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/audio_output/esd.c
modules/audio_output/esd.c
+4
-4
No files found.
modules/audio_output/esd.c
View file @
198220ee
...
...
@@ -199,8 +199,8 @@ static void Play( aout_instance_t *p_aout )
if
(
p_buffer
!=
NULL
)
{
int
pos
;
char
*
data
=
p_buffer
->
p_buffer
;
unsigned
int
pos
;
unsigned
char
*
data
=
p_buffer
->
p_buffer
;
for
(
pos
=
0
;
pos
+
ESD_BUF_SIZE
<=
p_buffer
->
i_nb_bytes
;
pos
+=
ESD_BUF_SIZE
)
...
...
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