diff options
| author | Andrew Jones <drjones@redhat.com> | 2015-10-18 19:35:27 +0200 |
|---|---|---|
| committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-10-23 13:11:52 -0200 |
| commit | 31bfa2a40004204aee503c6417fbafb5d17e0a51 (patch) | |
| tree | 86eaf3bf66e7700cfbfcffd293c5269037021f82 | |
| parent | 72370dc1149d7c90d2c2218e0d0658bee23a5bf7 (diff) | |
| download | focaccia-qemu-31bfa2a40004204aee503c6417fbafb5d17e0a51.tar.gz focaccia-qemu-31bfa2a40004204aee503c6417fbafb5d17e0a51.zip | |
vl: trivial: minor tweaks to a max-cpu error msg
Signed-off-by: Andrew Jones <drjones@redhat.com>
| -rw-r--r-- | vl.c | 4 |
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); } |