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

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1329819
This commit is contained in:
Peter Krempa 2016-04-25 10:38:01 +02:00
parent 72c313bce9
commit 3a703b8120

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;