aboutsummaryrefslogtreecommitdiff
path: root/vl.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-02-24 09:51:24 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2012-02-24 09:51:24 -0600
commit85f38553031b1a6e07f786c9ab0d403af7252b4f (patch)
tree4d9c0efac9343b2073732b368860f894e672a9b5 /vl.c
parent18ac5499584319ef828c7da4c6223f818dde0234 (diff)
parentf293d8b1f26953ccaef794785cea0619d4f8c268 (diff)
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
* stefanha/trivial-patches: slirp/misc: fix gcc __warn_memset_zero_len warnings vl.c: Increase width of machine name column in "-M ?" output tcg: Remove unneeded include statements
Diffstat (limited to 'vl.c')
-rw-r--r--vl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vl.c b/vl.c
index 641df593cb..cd77852236 100644
--- a/vl.c
+++ b/vl.c
@@ -2004,9 +2004,9 @@ static QEMUMachine *machine_parse(const char *name)
printf("Supported machines are:\n");
for (m = first_machine; m != NULL; m = m->next) {
if (m->alias) {
- printf("%-10s %s (alias of %s)\n", m->alias, m->desc, m->name);
+ printf("%-20s %s (alias of %s)\n", m->alias, m->desc, m->name);
}
- printf("%-10s %s%s\n", m->name, m->desc,
+ printf("%-20s %s%s\n", m->name, m->desc,
m->is_default ? " (default)" : "");
}
exit(!name || *name != '?');