diff options
author | Josh Blum | 2013-06-06 13:01:04 -0700 |
---|---|---|
committer | Josh Blum | 2013-06-06 13:01:04 -0700 |
commit | 7350e18b8d5090349390f54b76a0e251b66ce619 (patch) | |
tree | 6ce12ebd668d120823c652f8b09d055a149d70dc /lib/input_handlers.cpp | |
parent | 3739e119b81f0898755817eff618d45eed7e6692 (diff) | |
download | sandhi-7350e18b8d5090349390f54b76a0e251b66ce619.tar.gz sandhi-7350e18b8d5090349390f54b76a0e251b66ce619.tar.bz2 sandhi-7350e18b8d5090349390f54b76a0e251b66ce619.zip |
gras: moved block ptr into data
Diffstat (limited to 'lib/input_handlers.cpp')
-rw-r--r-- | lib/input_handlers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/input_handlers.cpp b/lib/input_handlers.cpp index c3d4936..89e1d34 100644 --- a/lib/input_handlers.cpp +++ b/lib/input_handlers.cpp @@ -82,7 +82,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.config); + new_msg.queue = data->block->input_buffer_allocator(index, message.config); if (new_msg.queue) worker->post_upstream(index, new_msg); } |