diff options
author | 2015-12-05 18:48:24 +0000 | |
---|---|---|
committer | 2015-12-05 18:48:24 +0000 | |
commit | 96d89ca46d187381578a822ed3395bd70eb5151d (patch) | |
tree | 42ab30006bd9d6dde800699fbc89aaf08fb12342 | |
parent | strings.h -> string.h to prevent an implicit declaration. Also remove a (diff) | |
download | wireguard-openbsd-96d89ca46d187381578a822ed3395bd70eb5151d.tar.xz wireguard-openbsd-96d89ca46d187381578a822ed3395bd70eb5151d.zip |
Align columns to printed output in "vmctl status"
-rw-r--r-- | usr.sbin/vmctl/vmctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/vmctl/vmctl.c b/usr.sbin/vmctl/vmctl.c index ba68151552e..3ba82f3a538 100644 --- a/usr.sbin/vmctl/vmctl.c +++ b/usr.sbin/vmctl/vmctl.c @@ -291,7 +291,7 @@ print_vm_info(struct vm_info_result *list, size_t ct) size_t i, j; char *vcpu_state; - printf("%5s %5s %5s %7s %s\n", "ID", "PID", "VCPUS", "MAXMEM", + printf("%5s %5s %5s %9s %s\n", "ID", "PID", "VCPUS", "MAXMEM", "NAME"); for (i = 0; i < ct; i++) { if (info_id == 0 || info_id == list[i].vir_id) |