diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2017-08-29 19:03:37 -0300 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-09-01 10:43:07 -0300 |
commit | 3beacfb98ba5f594dff4a4541401f2849e0a9ec6 (patch) | |
tree | 006850050a15edf9ed00e01587f3004479803f64 /backends/hostmem.c | |
parent | 223cd0e13f2e46078d7b573f0b8402bfbee339be (diff) | |
download | qemu-3beacfb98ba5f594dff4a4541401f2849e0a9ec6.zip qemu-3beacfb98ba5f594dff4a4541401f2849e0a9ec6.tar.gz qemu-3beacfb98ba5f594dff4a4541401f2849e0a9ec6.tar.bz2 |
qom: Remove unused errp parameter from can_be_deleted()
The errp argument is ignored by all implementations of the
method, and user_creatable_del() would break if any
implementation set an error (because it calls error_setg(errp) if
the function returns false). Remove the unused parameter.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20170829220337.23427-1-ehabkost@redhat.com>
Reviewed-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'backends/hostmem.c')
-rw-r--r-- | backends/hostmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/hostmem.c b/backends/hostmem.c index 4606b73..34550b9 100644 --- a/backends/hostmem.c +++ b/backends/hostmem.c @@ -342,7 +342,7 @@ out: } static bool -host_memory_backend_can_be_deleted(UserCreatable *uc, Error **errp) +host_memory_backend_can_be_deleted(UserCreatable *uc) { if (host_memory_backend_is_mapped(MEMORY_BACKEND(uc))) { return false; |