diff options
| author | Michael S. Tsirkin <mst@redhat.com> | 2018-05-03 22:50:33 +0300 |
|---|---|---|
| committer | Michael S. Tsirkin <mst@redhat.com> | 2018-06-01 19:20:37 +0300 |
| commit | e703a5a1e043ad78f9370b1f91825625da4383ed (patch) | |
| tree | 1e654cb3d802e13f431c761d42dcb10bbfb69a17 /hw/net/e1000e.c | |
| parent | 455e17a1b85fbc3d8c7208b5bc9a742d8508b324 (diff) | |
| download | focaccia-qemu-e703a5a1e043ad78f9370b1f91825625da4383ed.tar.gz focaccia-qemu-e703a5a1e043ad78f9370b1f91825625da4383ed.zip | |
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 <mst@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/net/e1000e.c')
| -rw-r--r-- | hw/net/e1000e.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/e1000e.c b/hw/net/e1000e.c index 16a9417a85..cda8d48333 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" |