Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
e065c4db
Commit
e065c4db
authored
Feb 24, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jack: initialize local variable "space"
Fix a gcc warning, initialize the "space" variable at the beginning of mpd_jack_play().
parent
1630fe00
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
jack_plugin.c
src/output/jack_plugin.c
+1
-1
No files found.
src/output/jack_plugin.c
View file @
e065c4db
...
...
@@ -392,7 +392,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size)
{
struct
jack_data
*
jd
=
data
;
const
size_t
frame_size
=
audio_format_frame_size
(
&
jd
->
audio_format
);
size_t
space
,
space1
;
size_t
space
=
0
,
space1
;
if
(
jd
->
shutdown
)
{
g_warning
(
"Refusing to play, because there is no client thread."
);
...
...
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