test: fix -Wmissing-field-initializers warnings

This commit is contained in:
Ben Noordhuis 2012-11-02 14:34:28 +01:00
parent 894a8523cb
commit dcce1eab3b
2 changed files with 2 additions and 2 deletions

View File

@ -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];

View File

@ -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) \