Unfortunately, commit
a8962f70 only fixed first half of the reported issue of
virt-admin outputting negative values where unsigned int is expected by
BZ below, so this commit represents the other missing half of the fix.
resolves: https://bugzilla.redhat.com/show_bug.cgi?id=
1356769
Signed-off-by: Erik Skultety <eskultet@redhat.com>
}
for (i = 0; i < nparams; i++)
- vshPrint(ctl, "%-20s: %d\n", params[i].field, params[i].value.ui);
+ vshPrint(ctl, "%-20s: %u\n", params[i].field, params[i].value.ui);
ret = true;