From: Michael S. Tsirkin Date: Thu, 3 May 2018 19:50:33 +0000 (+0300) Subject: e1000e: use local path for local headers X-Git-Tag: v3.0.0-rc0~116^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e703a5a1e043ad78f9370b1f91825625da4383ed;p=thirdparty%2Fqemu.git e1000e: use local path for local headers When pulling in headers that are in the same directory as the C file (as opposed to one in include/), we should use its relative path, without a directory. Signed-off-by: Michael S. Tsirkin Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé --- diff --git a/hw/net/e1000e.c b/hw/net/e1000e.c index 16a9417a854..cda8d483336 100644 --- a/hw/net/e1000e.c +++ b/hw/net/e1000e.c @@ -41,7 +41,7 @@ #include "hw/pci/msi.h" #include "hw/pci/msix.h" -#include "hw/net/e1000_regs.h" +#include "e1000_regs.h" #include "e1000x_common.h" #include "e1000e_core.h"