Commit a49d44d2 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Andrei Vagin

compel/src/main.c: rm useless init

1 Since all the fields are now initialized to zeroes,
  we can just say ={};

2 Since this is static, it is initialized to zeroes anyway,
  but from my POV being explicit about it is better.

travis-ci: success for More polishing for compel cli
Signed-off-by: 's avatarKir Kolyshkin <kir@openvz.org>
Acked-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 4b865025
......@@ -51,11 +51,7 @@ static const compel_cflags_t compel_cflags[] = {
},
};
piegen_opt_t opts = {
.input_filename = NULL,
.output_filename = NULL,
.fout = NULL,
};
piegen_opt_t opts = {};
static int piegen(void)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment