mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
qdev: Make functions taking Error ** return bool, not void
See recent commit "error: Document Error API usage rules" for rationale. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20200707160613.848843-32-armbru@redhat.com>
This commit is contained in:
parent
b783f54d60
commit
73ac1aac39
2 changed files with 4 additions and 4 deletions
|
@ -239,8 +239,8 @@ extern const PropertyInfo qdev_prop_pcie_link_width;
|
|||
/*
|
||||
* Set properties between creation and realization.
|
||||
*/
|
||||
void qdev_prop_set_drive_err(DeviceState *dev, const char *name,
|
||||
BlockBackend *value, Error **errp);
|
||||
bool qdev_prop_set_drive_err(DeviceState *dev, const char *name,
|
||||
BlockBackend *value, Error **errp);
|
||||
|
||||
/*
|
||||
* Set properties between creation and realization.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue