diff options
Diffstat (limited to 'lib/topology_handler.cpp')
-rw-r--r-- | lib/topology_handler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/topology_handler.cpp b/lib/topology_handler.cpp index 5cd2f79..df8d445 100644 --- a/lib/topology_handler.cpp +++ b/lib/topology_handler.cpp @@ -95,6 +95,6 @@ void BlockActor::handle_update_inputs( const size_t hist_bytes = this->input_items_sizes[i]*this->input_configs[i].lookahead_items; const size_t reserve_bytes = this->input_items_sizes[i]*this->input_configs[i].reserve_items; const size_t maximum_bytes = this->input_items_sizes[i]*this->input_configs[i].maximum_items; - this->input_queues.update_config(i, hist_bytes, reserve_bytes, maximum_bytes); + this->input_queues.update_config(i, this->input_items_sizes[i], hist_bytes, reserve_bytes, maximum_bytes); } } |