summaryrefslogtreecommitdiff
path: root/src/output/OutputPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-12-26 22:27:01 +0100
committerMax Kellermann <max@duempel.org>2014-12-26 22:27:01 +0100
commit58a5da33c243c057ac4f70ffcfa179b9710161d2 (patch)
tree389077b8e9f78c001daf40a8e1b1d7bd562414c4 /src/output/OutputPlugin.cxx
parent7077eac589bf828188e7dbcfb4ac6002203063d4 (diff)
OutputPlugin: pass Tag reference to _send_tag()
Diffstat (limited to 'src/output/OutputPlugin.cxx')
-rw-r--r--src/output/OutputPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/OutputPlugin.cxx b/src/output/OutputPlugin.cxx
index 33bb854d4..cf5c34449 100644
--- a/src/output/OutputPlugin.cxx
+++ b/src/output/OutputPlugin.cxx
@@ -75,7 +75,7 @@ ao_plugin_delay(AudioOutput *ao)
}
void
-ao_plugin_send_tag(AudioOutput *ao, const Tag *tag)
+ao_plugin_send_tag(AudioOutput *ao, const Tag &tag)
{
if (ao->plugin.send_tag != nullptr)
ao->plugin.send_tag(ao, tag);