diff options
author | Max Kellermann <max@duempel.org> | 2014-12-26 22:27:01 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-26 22:27:01 +0100 |
commit | 58a5da33c243c057ac4f70ffcfa179b9710161d2 (patch) | |
tree | 389077b8e9f78c001daf40a8e1b1d7bd562414c4 /src/output/OutputPlugin.cxx | |
parent | 7077eac589bf828188e7dbcfb4ac6002203063d4 (diff) |
OutputPlugin: pass Tag reference to _send_tag()
Diffstat (limited to 'src/output/OutputPlugin.cxx')
-rw-r--r-- | src/output/OutputPlugin.cxx | 2 |
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); |