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
13319e0b
Commit
13319e0b
authored
Mar 27, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pulse_mixer: removed superfluous G_GNUC_UNUSED attributes
Those parameters are used after all.
parent
d448392f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
pulse_mixer.c
src/mixer/pulse_mixer.c
+4
-4
No files found.
src/mixer/pulse_mixer.c
View file @
13319e0b
...
@@ -126,7 +126,7 @@ sink_input_vol(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
...
@@ -126,7 +126,7 @@ sink_input_vol(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
}
}
static
void
static
void
subscribe_cb
(
G_GNUC_UNUSED
pa_context
*
c
,
pa_subscription_event_type_t
t
,
subscribe_cb
(
pa_context
*
c
,
pa_subscription_event_type_t
t
,
uint32_t
idx
,
void
*
userdata
)
uint32_t
idx
,
void
*
userdata
)
{
{
...
@@ -143,7 +143,7 @@ subscribe_cb(G_GNUC_UNUSED pa_context *c, pa_subscription_event_type_t t,
...
@@ -143,7 +143,7 @@ subscribe_cb(G_GNUC_UNUSED pa_context *c, pa_subscription_event_type_t t,
else
{
else
{
pa_operation
*
o
;
pa_operation
*
o
;
o
=
pa_context_get_sink_input_info
(
pm
->
context
,
idx
,
o
=
pa_context_get_sink_input_info
(
c
,
idx
,
sink_input_cb
,
pm
);
sink_input_cb
,
pm
);
if
(
o
==
NULL
)
{
if
(
o
==
NULL
)
{
g_debug
(
"pa_context_get_sink_input_info() failed"
);
g_debug
(
"pa_context_get_sink_input_info() failed"
);
...
@@ -259,7 +259,7 @@ pulse_mixer_setup(struct pulse_mixer *pm)
...
@@ -259,7 +259,7 @@ pulse_mixer_setup(struct pulse_mixer *pm)
}
}
static
bool
static
bool
pulse_mixer_open
(
G_GNUC_UNUSED
struct
mixer
*
data
)
pulse_mixer_open
(
struct
mixer
*
data
)
{
{
struct
pulse_mixer
*
pm
=
(
struct
pulse_mixer
*
)
data
;
struct
pulse_mixer
*
pm
=
(
struct
pulse_mixer
*
)
data
;
...
@@ -295,7 +295,7 @@ pulse_mixer_open(G_GNUC_UNUSED struct mixer *data)
...
@@ -295,7 +295,7 @@ pulse_mixer_open(G_GNUC_UNUSED struct mixer *data)
}
}
static
void
static
void
pulse_mixer_close
(
G_GNUC_UNUSED
struct
mixer
*
data
)
pulse_mixer_close
(
struct
mixer
*
data
)
{
{
struct
pulse_mixer
*
pm
=
(
struct
pulse_mixer
*
)
data
;
struct
pulse_mixer
*
pm
=
(
struct
pulse_mixer
*
)
data
;
...
...
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