diff options
author | Max Kellermann <max@duempel.org> | 2014-12-24 23:22:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-12-24 23:22:56 +0100 |
commit | 687fc358fd40bc2873e7cacd6830f7512265012b (patch) | |
tree | 42df8fd03510bfbc34da2bda4e1c04146de44748 | |
parent | c4c2da06b7bc2351c16cc9471c54a125179d858f (diff) | |
download | mpd-687fc358fd40bc2873e7cacd6830f7512265012b.tar.gz mpd-687fc358fd40bc2873e7cacd6830f7512265012b.tar.xz mpd-687fc358fd40bc2873e7cacd6830f7512265012b.zip |
output/jack: fix typo
-rw-r--r-- | src/output/plugins/JackOutputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/plugins/JackOutputPlugin.cxx b/src/output/plugins/JackOutputPlugin.cxx index 854d2536f..e4239a70b 100644 --- a/src/output/plugins/JackOutputPlugin.cxx +++ b/src/output/plugins/JackOutputPlugin.cxx @@ -658,7 +658,7 @@ JackOutput::WriteSamples(const float *src, size_t n_frames) if (e.len < space) /* send data symmetrically */ - space = e->len; + space = e.len; dest[i] = (float *)e.buf; } |