summaryrefslogtreecommitdiff
path: root/lib/input_handlers.cpp
diff options
context:
space:
mode:
authorJosh Blum2012-12-22 12:37:49 -0800
committerJosh Blum2012-12-22 12:37:49 -0800
commitf32f981624c01005fe23af855b143a36ca052690 (patch)
tree153f495c4c7d9abafabad6c73b378cf67ddc828b /lib/input_handlers.cpp
parent38d3ec10d6f49f31008e97c579752cf8f3c3045c (diff)
downloadsandhi-f32f981624c01005fe23af855b143a36ca052690.tar.gz
sandhi-f32f981624c01005fe23af855b143a36ca052690.tar.bz2
sandhi-f32f981624c01005fe23af855b143a36ca052690.zip
use sbuffer config for alloc api
Diffstat (limited to 'lib/input_handlers.cpp')
-rw-r--r--lib/input_handlers.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp
index f6a81bc..4ca0bdf 100644
--- a/lib/input_handlers.cpp
+++ b/lib/input_handlers.cpp
@@ -66,9 +66,7 @@ void BlockActor::handle_input_alloc(const InputAllocMessage &message, const Ther
//handle the upstream block allocation request
OutputAllocMessage new_msg;
- new_msg.queue = block_ptr->input_buffer_allocator(
- index, message.token, message.recommend_length
- );
+ new_msg.queue = block_ptr->input_buffer_allocator(index, message.config);
if (new_msg.queue) this->post_upstream(index, new_msg);
}