mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 06:05:27 +00:00
build: avoid shadowing a function name
Make the same fix as in commit de53eff
.
* src/util/viralloc.h (virDeleteElementsN): Cater to old glibc.
This commit is contained in:
parent
75e656a363
commit
0df3e8966c
@ -64,7 +64,7 @@ int virInsertElementsN(void *ptrptr, size_t size, size_t at, size_t *countptr,
|
||||
bool clearOriginal, bool inPlace)
|
||||
ATTRIBUTE_RETURN_CHECK ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(4);
|
||||
int virDeleteElementsN(void *ptrptr, size_t size, size_t at, size_t *countptr,
|
||||
size_t remove, bool inPlace)
|
||||
size_t toremove, bool inPlace)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(4);
|
||||
int virAllocVar(void *ptrptr,
|
||||
size_t struct_size,
|
||||
|
Loading…
Reference in New Issue
Block a user