From 2923d34fdc5014a6219bfb3f9fab3795a8f4512f Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 20 Nov 2011 12:34:30 +0100 Subject: [PATCH] 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 --- block/vmdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #define VMDK3_MAGIC (('C' << 24) | ('O' << 16) | ('W' << 8) | 'D') #define VMDK4_MAGIC (('K' << 24) | ('D' << 16) | ('M' << 8) | 'V') -- 2.11.4.GIT