summaryrefslogtreecommitdiff
path: root/vl.c
diff options
context:
space:
mode:
authorAndrew Jones <drjones@redhat.com>2015-10-18 19:35:27 +0200
committerEduardo Habkost <ehabkost@redhat.com>2015-10-23 13:11:52 -0200
commit31bfa2a40004204aee503c6417fbafb5d17e0a51 (patch)
tree86eaf3bf66e7700cfbfcffd293c5269037021f82 /vl.c
parent72370dc1149d7c90d2c2218e0d0658bee23a5bf7 (diff)
downloadqemu-31bfa2a40004204aee503c6417fbafb5d17e0a51.tar.gz
vl: trivial: minor tweaks to a max-cpu error msg
Signed-off-by: Andrew Jones <drjones@redhat.com>
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 332d8287d8..dffaf09a44 100644
--- a/vl.c
+++ b/vl.c
@@ -4101,8 +4101,8 @@ int main(int argc, char **argv, char **envp)
machine_class->max_cpus = machine_class->max_cpus ?: 1; /* Default to UP */
if (max_cpus > machine_class->max_cpus) {
- fprintf(stderr, "Number of SMP cpus requested (%d), exceeds max cpus "
- "supported by machine `%s' (%d)\n", max_cpus,
+ fprintf(stderr, "Number of SMP CPUs requested (%d) exceeds max CPUs "
+ "supported by machine '%s' (%d)\n", max_cpus,
machine_class->name, machine_class->max_cpus);
exit(1);
}