[libvirt] [PATCH] Include stdint.h in libvirt.h for INT64_MAX

Matthias Bolte matthias.bolte at googlemail.com
Fri Mar 11 21:12:24 UTC 2011


2011/3/9 Eric Blake <eblake at redhat.com>:
> On 03/09/2011 06:47 AM, Daniel Veillard wrote:
>>> Instead of including stdint.h specify the value directly.
>>> ---
>>>  include/libvirt/libvirt.h.in |    2 +-
>>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>>
>>> diff --git a/include/libvirt/libvirt.h.in b/include/libvirt/libvirt.h.in
>>> index 618b350..82e45d7 100644
>>> --- a/include/libvirt/libvirt.h.in
>>> +++ b/include/libvirt/libvirt.h.in
>>> @@ -705,7 +705,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 9007199254740991 /* = INT64_MAX >> 10 */
>>
>>   Hum shouldn't that be 9007199254740991UL to provide type information ?
>
> UL still won't work on 32-bit platforms.  You need the LL (or ULL) suffix.
>

And now the final v3 for something that should have been a trivial patch :)

Matthias
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Don-t-use-INT64_MAX-in-libvirt.h-because-it-requires.patch
Type: application/mbox
Size: 1030 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20110311/cf96c387/attachment-0001.mbox>


More information about the libvir-list mailing list