virsh: host: Use bitmap size in bytes rather than bit count

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1329819
(cherry picked from commit 3a703b8120d9f996840bd315b6f74c45a7e98aad)
This commit is contained in:
Peter Krempa 2016-04-25 10:38:01 +02:00 committed by Cole Robinson
parent 20ae6d725b
commit 68b5d04ded

View File

@ -699,7 +699,7 @@ cmdNodeCpuMap(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
vshPrint(ctl, "%-15s ", _("CPU map:"));
if (pretty) {
char *str = virBitmapDataToString(cpumap, cpunum);
char *str = virBitmapDataToString(cpumap, VIR_CPU_MAPLEN(cpunum));
if (!str)
goto cleanup;