mirror of https://gitee.com/openkylin/libvirt.git
Add missing 'return 0;' in stub lxcStartFuse() method impl.
Without a 'return 0' in the stub lxcStartFuse() method, the compiler warns: lxc/lxc_fuse.c:374: error: control reaches end of non-void function [-Wreturn-type] Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
3563c51d3e
commit
784bb73eaa
|
@ -371,6 +371,7 @@ int lxcSetupFuse(virLXCFusePtr *f ATTRIBUTE_UNUSED,
|
|||
|
||||
int lxcStartFuse(virLXCFusePtr f ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void lxcFreeFuse(virLXCFusePtr *f ATTRIBUTE_UNUSED)
|
||||
|
|
Loading…
Reference in New Issue