Commit db241f40 authored by Paul Brook's avatar Paul Brook
Browse files

Fix typo

parent cae4956e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ void qdev_set_prop_ptr(DeviceState *dev, const char *name, void *value)
{
    DeviceProperty *prop;

    prop = create_prop(dev, name, PROP_TYPE_INT);
    prop = create_prop(dev, name, PROP_TYPE_PTR);
    prop->value.ptr = value;
}