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
1cbba4fc
Commit
1cbba4fc
authored
Sep 16, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input/curl, output/pulse: fix "unused local variable" warnings
parent
344b6dd1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
curl_input_plugin.c
src/input/curl_input_plugin.c
+1
-1
pulse_output_plugin.c
src/output/pulse_output_plugin.c
+2
-1
No files found.
src/input/curl_input_plugin.c
View file @
1cbba4fc
...
@@ -177,7 +177,7 @@ buffer_free_callback(gpointer data, G_GNUC_UNUSED gpointer user_data)
...
@@ -177,7 +177,7 @@ buffer_free_callback(gpointer data, G_GNUC_UNUSED gpointer user_data)
assert
(
buffer
->
consumed
<=
buffer
->
size
);
assert
(
buffer
->
consumed
<=
buffer
->
size
);
g_free
(
data
);
g_free
(
buffer
);
}
}
/**
/**
...
...
src/output/pulse_output_plugin.c
View file @
1cbba4fc
...
@@ -72,7 +72,8 @@ pulse_output_set_mixer(struct pulse_output *po, struct pulse_mixer *pm)
...
@@ -72,7 +72,8 @@ pulse_output_set_mixer(struct pulse_output *po, struct pulse_mixer *pm)
}
}
void
void
pulse_output_clear_mixer
(
struct
pulse_output
*
po
,
struct
pulse_mixer
*
pm
)
pulse_output_clear_mixer
(
struct
pulse_output
*
po
,
G_GNUC_UNUSED
struct
pulse_mixer
*
pm
)
{
{
assert
(
po
!=
NULL
);
assert
(
po
!=
NULL
);
assert
(
pm
!=
NULL
);
assert
(
pm
!=
NULL
);
...
...
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