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
8ce9b530
Commit
8ce9b530
authored
Apr 16, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mixer/software: use gcc_unused instead of G_GNUC_UNUSED
parent
0b9e52bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
SoftwareMixerPlugin.cxx
src/mixer/SoftwareMixerPlugin.cxx
+5
-5
No files found.
src/mixer/SoftwareMixerPlugin.cxx
View file @
8ce9b530
...
@@ -48,9 +48,9 @@ struct SoftwareMixer final : public Mixer {
...
@@ -48,9 +48,9 @@ struct SoftwareMixer final : public Mixer {
};
};
static
Mixer
*
static
Mixer
*
software_mixer_init
(
G_GNUC_UNUSED
void
*
ao
,
software_mixer_init
(
gcc_unused
void
*
ao
,
G_GNUC_UNUSED
const
struct
config_param
*
param
,
gcc_unused
const
struct
config_param
*
param
,
G_GNUC_UNUSED
GError
**
error_r
)
gcc_unused
GError
**
error_r
)
{
{
return
new
SoftwareMixer
();
return
new
SoftwareMixer
();
}
}
...
@@ -64,7 +64,7 @@ software_mixer_finish(Mixer *data)
...
@@ -64,7 +64,7 @@ software_mixer_finish(Mixer *data)
}
}
static
int
static
int
software_mixer_get_volume
(
Mixer
*
mixer
,
G_GNUC_UNUSED
GError
**
error_r
)
software_mixer_get_volume
(
Mixer
*
mixer
,
gcc_unused
GError
**
error_r
)
{
{
SoftwareMixer
*
sm
=
(
SoftwareMixer
*
)
mixer
;
SoftwareMixer
*
sm
=
(
SoftwareMixer
*
)
mixer
;
...
@@ -73,7 +73,7 @@ software_mixer_get_volume(Mixer *mixer, G_GNUC_UNUSED GError **error_r)
...
@@ -73,7 +73,7 @@ software_mixer_get_volume(Mixer *mixer, G_GNUC_UNUSED GError **error_r)
static
bool
static
bool
software_mixer_set_volume
(
Mixer
*
mixer
,
unsigned
volume
,
software_mixer_set_volume
(
Mixer
*
mixer
,
unsigned
volume
,
G_GNUC_UNUSED
GError
**
error_r
)
gcc_unused
GError
**
error_r
)
{
{
SoftwareMixer
*
sm
=
(
SoftwareMixer
*
)
mixer
;
SoftwareMixer
*
sm
=
(
SoftwareMixer
*
)
mixer
;
...
...
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