From: Stefan Weil Date: Sun, 20 Nov 2011 11:34:30 +0000 (+0100) Subject: Include zlib.h using #include <> X-Git-Tag: qemu-xen-4.3.0-rc1~1981 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2923d34fdc5014a6219bfb3f9fab3795a8f4512f;p=qemu-upstream-4.3-testing.git 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 Signed-off-by: Anthony Liguori --- diff --git a/block/vmdk.c b/block/vmdk.c index e53a2f092..96f7d5d90 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 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D') #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V')