aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/RewindInputPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-28 23:35:01 +0100
committerMax Kellermann <max@duempel.org>2013-01-28 23:35:01 +0100
commitcffc78ad6a978c8ef0afae4fbdd4b189612a7167 (patch)
tree2496679726754549fd6aad4da0ab558b07bbe0bf /src/input/RewindInputPlugin.cxx
parentdcf55c7e328578d435eb14277cb6ba9e072f7e9c (diff)
downloadmpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.tar.gz
mpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.tar.xz
mpd-cffc78ad6a978c8ef0afae4fbdd4b189612a7167.zip
InputStream: store references instead of pointers
Diffstat (limited to '')
-rw-r--r--src/input/RewindInputPlugin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/RewindInputPlugin.cxx b/src/input/RewindInputPlugin.cxx
index 6c0093a38..362e55b3f 100644
--- a/src/input/RewindInputPlugin.cxx
+++ b/src/input/RewindInputPlugin.cxx
@@ -62,7 +62,7 @@ struct RewindInputStream {
RewindInputStream(input_stream *_input)
:base(rewind_input_plugin, _input->uri,
- *_input->mutex, *_input->cond),
+ _input->mutex, _input->cond),
input(_input), tail(0) {
}