aboutsummaryrefslogtreecommitdiff
path: root/src/filter/VolumeFilterPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-02-02 08:31:17 +0100
committerMax Kellermann <max@duempel.org>2013-02-02 08:31:17 +0100
commite6b04d1b50c0b455a255bd90ea72f51eb323e62d (patch)
treefd6a40716fd85f716f0333471ee6b6d77347f3b5 /src/filter/VolumeFilterPlugin.cxx
parent12613356fc64e8ed94e709accfb1f3b5e3b5bd33 (diff)
filter/*: don't use GLib macros
Diffstat (limited to 'src/filter/VolumeFilterPlugin.cxx')
-rw-r--r--src/filter/VolumeFilterPlugin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filter/VolumeFilterPlugin.cxx b/src/filter/VolumeFilterPlugin.cxx
index f1a1f478..86c99b83 100644
--- a/src/filter/VolumeFilterPlugin.cxx
+++ b/src/filter/VolumeFilterPlugin.cxx
@@ -50,8 +50,8 @@ volume_quark(void)
}
static struct filter *
-volume_filter_init(G_GNUC_UNUSED const struct config_param *param,
- G_GNUC_UNUSED GError **error_r)
+volume_filter_init(gcc_unused const struct config_param *param,
+ gcc_unused GError **error_r)
{
struct volume_filter *filter = g_new(struct volume_filter, 1);
@@ -69,7 +69,7 @@ volume_filter_finish(struct filter *filter)
static const struct audio_format *
volume_filter_open(struct filter *_filter, struct audio_format *audio_format,
- G_GNUC_UNUSED GError **error_r)
+ gcc_unused GError **error_r)
{
struct volume_filter *filter = (struct volume_filter *)_filter;