[libvirt] [PATCH 04/10] cgroup: Replace sscanf with virStrToLong_ll

Eric Blake eblake at redhat.com
Tue Mar 30 22:16:38 UTC 2010


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 at redhat.com    +1-801-349-2682
Libvirt virtualization library http://libvirt.org

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 323 bytes
Desc: OpenPGP digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20100330/5f14b625/attachment-0001.sig>


More information about the libvir-list mailing list