From: Paul Brook Date: Sat, 6 Jun 2009 01:49:32 +0000 (+0100) Subject: Fix typo X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=db241f403213807a3ab9ea9eb88649dcbf71dba4;p=qemu.git Fix typo Signed-off-by: Paul Brook --- diff --git a/hw/qdev.c b/hw/qdev.c index 1023c6c37a..5175fe17fd 100644 --- a/hw/qdev.c +++ b/hw/qdev.c @@ -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; }