Skip to content
Snippets Groups Projects
Commit eb4cec1a authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov
Browse files

[*] Fixed no-return value in function with no-void return type

parent 6ef66168
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ static size_t s_chain_callback_datums_pool_proc_with_group(dap_chain_t * a_chain
{
if(dap_strcmp(dap_chain_gdb_get_group(a_chain), a_group))
return 0;
s_chain_callback_datums_pool_proc(a_chain, a_datums, a_datums_count);
return s_chain_callback_datums_pool_proc(a_chain, a_datums, a_datums_count);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment