From 5a61cb60d6ee8d49c553d7959363df26b55f4873 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Thu, 8 Sep 2011 17:55:32 +0200 Subject: Fix include statements for qemu-common.h * qemu-common.h is not a system include file, so it should be included with "" instead of <>. Otherwise incremental builds might fail because only local include files are checked for changes. * linux-user/syscall.c included the file twice. Cc: Riku Voipio Cc: Jan Kiszka Acked-by: Kevin Wolf Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- nbd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nbd.h') diff --git a/nbd.h b/nbd.h index 96f77fe2d1..273cfa1af4 100644 --- a/nbd.h +++ b/nbd.h @@ -21,7 +21,7 @@ #include -#include +#include "qemu-common.h" #include "block_int.h" -- cgit v1.2.1