[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [libvirt] [PATCH 04/10] cgroup: Replace sscanf with virStrToLong_ll
- From: Eric Blake <eblake redhat com>
- To: Matthias Bolte <matthias bolte googlemail com>
- Cc: libvir-list redhat com
- Subject: Re: [libvirt] [PATCH 04/10] cgroup: Replace sscanf with virStrToLong_ll
- Date: Tue, 30 Mar 2010 16:16:38 -0600
On 03/30/2010 10:20 AM, Matthias Bolte wrote:
> - if (sscanf(strval, "%" SCNi64, value) != 1)
> + if (virStrToLong_ll(strval, NULL, 10, value) < 0)
Oops. You effectively changed from %lli to %lld, which means the string
now has to be decimal, instead of octal or hex. Did you mean to pass 0
as the third argument?
--
Eric Blake eblake redhat com +1-801-349-2682
Libvirt virtualization library http://libvirt.org
Attachment:
signature.asc
Description: OpenPGP digital signature
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]