Fix an early exit in the code

This commit is contained in:
JT Acquaviva 2019-08-25 22:48:17 +02:00
parent fdf70a0e1d
commit 9cbb2d6330
1 changed files with 0 additions and 1 deletions

View File

@ -36,7 +36,6 @@ int ngi_client_side_reduce(FILE * file, ngi_op_t op, ngi_type_t type, void * out
assert(op == NGI_OP_MAX);
int res = ngi_server_side_reduce(file, op, type, out_buff, off, size);
assert(res == 0);
exit(0);
return res;
}