Windows: avoid "uv_" naming conflicts. #3225

This commit is contained in:
Seth Jackson
2015-08-24 20:09:27 -04:00
committed by Justin M. Keyes
parent 56fe0c956f
commit b9d17c6a8a
7 changed files with 41 additions and 41 deletions

View File

@@ -9,7 +9,7 @@
#include "nvim/lib/kvec.h"
#include "nvim/log.h"
#include "nvim/event/loop.h"
#include "nvim/event/uv_process.h"
#include "nvim/event/libuv_process.h"
#include "nvim/event/rstream.h"
#include "nvim/os/shell.h"
#include "nvim/os/signal.h"
@@ -205,7 +205,7 @@ static int do_os_system(char **argv,
xstrlcpy(prog, argv[0], MAXPATHL);
Stream in, out, err;
UvProcess uvproc = uv_process_init(&loop, &buf);
LibuvProcess uvproc = libuv_process_init(&loop, &buf);
Process *proc = &uvproc.process;
Queue *events = queue_new_child(loop.events);
proc->events = events;