diff options
Diffstat (limited to 'hw/core/machine.c')
-rw-r--r-- | hw/core/machine.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/core/machine.c b/hw/core/machine.c index 211b4e077a..eb267b828d 100644 --- a/hw/core/machine.c +++ b/hw/core/machine.c @@ -290,12 +290,9 @@ static void machine_set_phandle_start(Object *obj, Visitor *v, Error **errp) { MachineState *ms = MACHINE(obj); - Error *error = NULL; int64_t value; - visit_type_int(v, name, &value, &error); - if (error) { - error_propagate(errp, error); + if (!visit_type_int(v, name, &value, errp)) { return; } |