diff options
author | Stefan Weil <weil@mail.berlios.de> | 2011-09-08 17:55:32 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-09-09 09:56:12 +0100 |
commit | fe71bb3fde2dc487a1305e505510982fe8bd435c (patch) | |
tree | 501751810acb98079ca316af36a9639b1d850a2a /nbd.h | |
parent | 0e40f75912b8590831539f990361e2dce713fd14 (diff) | |
download | qemu-fe71bb3fde2dc487a1305e505510982fe8bd435c.tar.gz qemu-fe71bb3fde2dc487a1305e505510982fe8bd435c.tar.bz2 qemu-fe71bb3fde2dc487a1305e505510982fe8bd435c.zip |
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 <riku.voipio@iki.fi>
Cc: Jan Kiszka <jan.kiszka@siemens.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'nbd.h')
-rw-r--r-- | nbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ #include <sys/types.h> -#include <qemu-common.h> +#include "qemu-common.h" #include "block_int.h" |