summaryrefslogtreecommitdiff
path: root/block/vmdk.c
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2011-11-20 12:34:30 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2011-11-21 15:05:59 -0600
commit2923d34fdc5014a6219bfb3f9fab3795a8f4512f (patch)
tree6588bd7b497823b4b60094039489a2bdb9b9c5cc /block/vmdk.c
parent930b588395b8f5864e10688075482e421af7b43d (diff)
downloadqemu-2923d34fdc5014a6219bfb3f9fab3795a8f4512f.tar.gz
Include zlib.h using #include <>
zlib.h is not a local include file, therefore it should be included using <> instead of "". Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block/vmdk.c')
-rw-r--r--block/vmdk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/vmdk.c b/block/vmdk.c
index e53a2f0920..96f7d5d90f 100644
--- a/block/vmdk.c
+++ b/block/vmdk.c
@@ -26,7 +26,7 @@
#include "qemu-common.h"
#include "block_int.h"
#include "module.h"
-#include "zlib.h"
+#include <zlib.h>
#define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D')
#define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')