test: fix -Wmissing-field-initializers warnings
This commit is contained in:
parent
894a8523cb
commit
dcce1eab3b
@ -30,7 +30,7 @@ static int N = 1000;
|
||||
static int done;
|
||||
|
||||
static uv_process_t process;
|
||||
static uv_process_options_t options = { 0 };
|
||||
static uv_process_options_t options;
|
||||
static char exepath[1024];
|
||||
static size_t exepath_size = 1024;
|
||||
static char* args[3];
|
||||
|
||||
@ -51,7 +51,7 @@ typedef struct {
|
||||
task_entry_t TASKS[] = {
|
||||
|
||||
#define TASK_LIST_END \
|
||||
{ 0, 0, 0, 0 } \
|
||||
{ 0, 0, 0, 0, 0 } \
|
||||
};
|
||||
|
||||
#define TEST_DECLARE(name) \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user