test: fix compiler warnings for test-spawn.c

This commit is contained in:
Ben Noordhuis 2011-09-08 00:14:04 +02:00
parent 5641503ae7
commit 90ea007f61

View File

@ -23,12 +23,13 @@
#include "task.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int close_cb_called;
static int exit_cb_called;
static uv_process_t process;
static uv_timer_t timer;
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];