diff options
author | Josh Blum | 2012-09-18 11:20:34 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-18 12:24:13 -0700 |
commit | 85e3a7a3a450d0a778d0b730316c7d993d1f5c5f (patch) | |
tree | 4fe816610f1c1a173a157624739e056ac875e4f0 /lib/block_handlers.cpp | |
parent | d575f066a8f9e5330645aae5cb8b42c94131471a (diff) | |
download | sandhi-85e3a7a3a450d0a778d0b730316c7d993d1f5c5f.tar.gz sandhi-85e3a7a3a450d0a778d0b730316c7d993d1f5c5f.tar.bz2 sandhi-85e3a7a3a450d0a778d0b730316c7d993d1f5c5f.zip |
added hook for custom output buffer allocator
Diffstat (limited to 'lib/block_handlers.cpp')
-rw-r--r-- | lib/block_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/block_handlers.cpp b/lib/block_handlers.cpp index d61a7e2..684b6fa 100644 --- a/lib/block_handlers.cpp +++ b/lib/block_handlers.cpp @@ -93,7 +93,7 @@ void ElementImpl::handle_block_msg( //tell the upstream about the input requirements BufferHintMessage message; message.history_bytes = this->input_history_items[i]*this->input_items_sizes[i]; - message.reserve_bytes = input_multiple_items[i]; + message.reserve_bytes = this->input_multiple_items[i]; message.token = this->input_tokens[i]; task_iface.post_upstream(i, message); |