From a04296ed7fff561a0f86166bd316a90e3e3bc3a4 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 e53a2f0..96f7d5d 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.7.4