From 5cc370aa369a070804994c83ac8c36e4d32b8e54 Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Wed, 9 Mar 2011 10:42:49 +0100 Subject: [PATCH] Don't use INT64_MAX in libvirt.h because it requires stdint.h VIR_DOMAIN_MEMORY_PARAM_UNLIMITED uses INT64_MAX but stdint.h was not and should not be included. Therefore, libvirt.h was not self-contained. Instead of including stdint.h specify the value directly. --- include/libvirt/libvirt.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libvirt/libvirt.h.in b/include/libvirt/libvirt.h.in index fbbf2ead66..eaeccd6a82 100644 --- a/include/libvirt/libvirt.h.in +++ b/include/libvirt/libvirt.h.in @@ -772,7 +772,7 @@ typedef enum { * Macro providing the virMemoryParameter value that indicates "unlimited" */ -#define VIR_DOMAIN_MEMORY_PARAM_UNLIMITED (INT64_MAX >> 10) +#define VIR_DOMAIN_MEMORY_PARAM_UNLIMITED 9007199254740991LL /* = INT64_MAX >> 10 */ /** * VIR_DOMAIN_MEMORY_HARD_LIMIT: