mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 07:59:00 +00:00
virt-admin: Output srv-clients-set data as unsigned int rather than signed
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>
This commit is contained in:
parent
f47b91148a
commit
e2c63714a8
@ -857,7 +857,7 @@ cmdSrvClientsInfo(vshControl *ctl, const vshCmd *cmd)
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user