mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-09-02 17:50:04 +03:00
util: Fix virCgroupNewMachine ATTRIBUTE_NONNULL args
Commit id 'c3bd0019c0' removed arg3, but forgot to adjust the numbers for NONNULL - caused build failure for coverity
This commit is contained in:
@ -110,7 +110,7 @@ int virCgroupNewMachine(const char *name,
|
|||||||
int controllers,
|
int controllers,
|
||||||
virCgroupPtr *group)
|
virCgroupPtr *group)
|
||||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
||||||
ATTRIBUTE_NONNULL(4);
|
ATTRIBUTE_NONNULL(3);
|
||||||
|
|
||||||
int virCgroupTerminateMachine(const char *name)
|
int virCgroupTerminateMachine(const char *name)
|
||||||
ATTRIBUTE_NONNULL(1);
|
ATTRIBUTE_NONNULL(1);
|
||||||
|
Reference in New Issue
Block a user