From cb8449a66dfa7503951d3c9a27a957918849ac57 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 16 Apr 2013 21:33:25 +0200 Subject: MixerInternal: convert to class --- test/read_mixer.cxx | 3 +-- test/run_filter.cxx | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/read_mixer.cxx b/test/read_mixer.cxx index 9f9db1e0c..c96f0f630 100644 --- a/test/read_mixer.cxx +++ b/test/read_mixer.cxx @@ -111,7 +111,6 @@ pcm_volume(G_GNUC_UNUSED void *buffer, G_GNUC_UNUSED size_t length, int main(int argc, G_GNUC_UNUSED char **argv) { GError *error = NULL; - struct mixer *mixer; bool success; int volume; @@ -124,7 +123,7 @@ int main(int argc, G_GNUC_UNUSED char **argv) main_loop = new EventLoop(EventLoop::Default()); - mixer = mixer_new(&alsa_mixer_plugin, NULL, NULL, &error); + Mixer *mixer = mixer_new(&alsa_mixer_plugin, NULL, NULL, &error); if (mixer == NULL) { g_printerr("mixer_new() failed: %s\n", error->message); g_error_free(error); diff --git a/test/run_filter.cxx b/test/run_filter.cxx index 0b8078c1a..8dde8fb65 100644 --- a/test/run_filter.cxx +++ b/test/run_filter.cxx @@ -36,7 +36,7 @@ #include bool -mixer_set_volume(G_GNUC_UNUSED struct mixer *mixer, +mixer_set_volume(gcc_unused Mixer *mixer, G_GNUC_UNUSED unsigned volume, G_GNUC_UNUSED GError **error_r) { return true; -- cgit v1.2.3