qemu-trivial
[Top][All Lists]
Advanced

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

[Qemu-trivial] [PATCH v2] target-i386: Report on error during cpu_x86_re


From: Don Slutz
Subject: [Qemu-trivial] [PATCH v2] target-i386: Report on error during cpu_x86_register().
Date: Mon, 17 Sep 2012 10:00:25 -0400

Send it to stderr before free of the details.

Signed-off-by: Don Slutz <address@hidden>
---
v2: Change __FUNCTION__ to __func__

 target-i386/cpu.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/target-i386/cpu.c b/target-i386/cpu.c
index 57c064f..760cca4 100644
--- a/target-i386/cpu.c
+++ b/target-i386/cpu.c
@@ -1352,6 +1352,7 @@ int cpu_x86_register(X86CPU *cpu, const char *cpu_model)
     }
     object_property_set_str(OBJECT(cpu), def->model_id, "model-id", &error);
     if (error_is_set(&error)) {
+        fprintf(stderr, "%s: %s\n", __func__, error_get_pretty(error));
         error_free(error);
         return -1;
     }
-- 
1.7.1




reply via email to

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