qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2] vl: trivial: minor tweaks to a max-cpu error msg


From: Andrew Jones
Subject: [Qemu-devel] [PATCH v2] vl: trivial: minor tweaks to a max-cpu error msg
Date: Mon, 26 Oct 2015 14:31:33 +0100

Also switch to using error_report.

Signed-off-by: Andrew Jones <address@hidden>
---
v2: Also switch to using error_report [Markus]

 vl.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vl.c b/vl.c
index 7c806a2428399..549c6675fe8df 100644
--- a/vl.c
+++ b/vl.c
@@ -4080,9 +4080,9 @@ 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,
-                machine_class->name, machine_class->max_cpus);
+        error_report("Number of SMP CPUs requested (%d) exceeds max CPUs "
+                     "supported by machine '%s' (%d)", max_cpus,
+                     machine_class->name, machine_class->max_cpus);
         exit(1);
     }
 
-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]