diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-24 09:51:24 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-02-24 09:51:24 -0600 |
commit | 85f38553031b1a6e07f786c9ab0d403af7252b4f (patch) | |
tree | 4d9c0efac9343b2073732b368860f894e672a9b5 /vl.c | |
parent | 18ac5499584319ef828c7da4c6223f818dde0234 (diff) | |
parent | f293d8b1f26953ccaef794785cea0619d4f8c268 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 != '?'); |