mirror of https://gitee.com/openkylin/libvirt.git
qemu: Fix build error in Coverity environment
Commit id '08600de37' changed the prototype to reduce an argument, but didn't adjust the ATTRIBUTE_NONNULL(11) to (10)
This commit is contained in:
parent
dbc7819921
commit
a3c90fcb94
|
@ -87,7 +87,7 @@ virCommandPtr qemuBuildCommandLine(virConnectPtr conn,
|
|||
virBitmapPtr nodeset,
|
||||
size_t *nnicindexes,
|
||||
int **nicindexes)
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(11);
|
||||
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(10);
|
||||
|
||||
/* Generate '-device' string for chardev device */
|
||||
int
|
||||
|
|
Loading…
Reference in New Issue