From e731a5edf879cd0b5eb2a2035f78e2b44fbe75f5 Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Wed, 14 May 2014 18:05:03 +0200 Subject: Introduce nvim namespace: Fix relative includes. Problem: Some newly introduced files used includes relative to the current file, both of the form `include "../XXX.h"` and `include "XXX.h"`. Preferred form is relative to include root (src/ in our case). Solution: Change includes to preferred form. Note: This is also done to ease next commit (prepend 'nvim/ to all project-local includes). --- src/nvim/os/msgpack_rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/os/msgpack_rpc.c') diff --git a/src/nvim/os/msgpack_rpc.c b/src/nvim/os/msgpack_rpc.c index e429bf0519..45c0b3aa21 100644 --- a/src/nvim/os/msgpack_rpc.c +++ b/src/nvim/os/msgpack_rpc.c @@ -1,6 +1,6 @@ #include -#include "msgpack_rpc.h" +#include "os/msgpack_rpc.h" #include "vim.h" #include "memory.h" -- cgit