mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
util: alloc: Completely replace VIR_APPEND_ELEMENT_QUIET by VIR_APPEND_ELEMENT
VIR_APPEND_ELEMENT doesn't report any errors now so we can remove VIR_APPEND_ELEMENT_QUIET and replace all uses by VIR_APPEND_ELEMENT Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
@@ -78,8 +78,8 @@ virFileWrapperAddPrefix(const char *prefix,
|
||||
|
||||
init_syms();
|
||||
|
||||
VIR_APPEND_ELEMENT_QUIET(prefixes, nprefixes, prefix);
|
||||
VIR_APPEND_ELEMENT_QUIET(overrides, noverrides, override);
|
||||
VIR_APPEND_ELEMENT(prefixes, nprefixes, prefix);
|
||||
VIR_APPEND_ELEMENT(overrides, noverrides, override);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user