diff options
author | Max Kellermann <max@duempel.org> | 2013-10-21 20:31:34 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-21 20:31:34 +0200 |
commit | 72af3c0489f8bc417189b6dd48b8db4f380e4ba3 (patch) | |
tree | 268fc2b8579d67d8d1c14acf7d054f09c2500820 /test | |
parent | 65e54f6ed1152002ba736c6e30518a934f82a7fe (diff) | |
download | mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.tar.gz mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.tar.xz mpd-72af3c0489f8bc417189b6dd48b8db4f380e4ba3.zip |
decoder_plugin: rename struct to DecoderPlugin
Diffstat (limited to 'test')
-rw-r--r-- | test/read_tags.cxx | 2 | ||||
-rw-r--r-- | test/run_decoder.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/read_tags.cxx b/test/read_tags.cxx index 7b631cae5..c7756524f 100644 --- a/test/read_tags.cxx +++ b/test/read_tags.cxx @@ -145,7 +145,7 @@ static const struct tag_handler print_handler = { int main(int argc, char **argv) { const char *decoder_name, *path; - const struct decoder_plugin *plugin; + const struct DecoderPlugin *plugin; #ifdef HAVE_LOCALE_H /* initialize locale */ diff --git a/test/run_decoder.cxx b/test/run_decoder.cxx index 9934429fc..08f6f66b5 100644 --- a/test/run_decoder.cxx +++ b/test/run_decoder.cxx @@ -48,7 +48,7 @@ my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level, struct decoder { const char *uri; - const struct decoder_plugin *plugin; + const struct DecoderPlugin *plugin; bool initialized; }; |