]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qobject/qdict.c
util/cutils: Rename qemu_strtoll(), qemu_strtoull()
[mirror_qemu.git] / qobject / qdict.c
index 197b0fbd47f23707eb201f004485c4e541067435..4be7d3eb7292cb4ee2faf90e8ca97c2eacfb8582 100644 (file)
@@ -767,7 +767,7 @@ static int qdict_is_list(QDict *maybe_list, Error **errp)
     for (ent = qdict_first(maybe_list); ent != NULL;
          ent = qdict_next(maybe_list, ent)) {
 
-        if (qemu_strtoll(ent->key, NULL, 10, &val) == 0) {
+        if (qemu_strtoi64(ent->key, NULL, 10, &val) == 0) {
             if (is_list == -1) {
                 is_list = 1;
             } else if (!is_list) {