From 9cbb2d63308023daff12b7bb215170e4f00a8547 Mon Sep 17 00:00:00 2001 From: JT Acquaviva Date: Sun, 25 Aug 2019 22:48:17 +0200 Subject: [PATCH] Fix an early exit in the code --- emulation/ngi.c | 1 - 1 file changed, 1 deletion(-) diff --git a/emulation/ngi.c b/emulation/ngi.c index 8b5b3e5..3ae2e25 100644 --- a/emulation/ngi.c +++ b/emulation/ngi.c @@ -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; }