Commit c0f36518 authored by Eduardo Habkost's avatar Eduardo Habkost Committed by Andreas Färber
Browse files

mac99: Use MACHINE_TYPE_NAME to encode class name



It will result in exactly the same class name, but it will make the code
consistent with the other classes.

Signed-off-by: default avatarEduardo Habkost <ehabkost@redhat.com>
Reviewed-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
Signed-off-by: default avatarAndreas Färber <afaerber@suse.de>
parent af62e639
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -517,7 +517,7 @@ static void core99_machine_class_init(ObjectClass *oc, void *data)
}

static const TypeInfo core99_machine_info = {
    .name          = "mac99-machine",
    .name          = MACHINE_TYPE_NAME("mac99"),
    .parent        = TYPE_MACHINE,
    .class_init    = core99_machine_class_init,
};