mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
examples/dommigrate: Don't set retval in usage()
The usage() function should just print expected arguments. Make the function return void then. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Kristína Hanicová <khanicov@redhat.com>
This commit is contained in:
parent
c70cf347b9
commit
132069f845
@ -26,11 +26,10 @@
|
||||
#include <libvirt/virterror.h>
|
||||
|
||||
|
||||
static int
|
||||
usage(char *prgn, int ret)
|
||||
static void
|
||||
usage(char *prgn)
|
||||
{
|
||||
printf("Usage: %s <src uri> <dst uri> <domain name>\n", prgn);
|
||||
return ret;
|
||||
}
|
||||
|
||||
int
|
||||
@ -42,7 +41,7 @@ main(int argc, char *argv[])
|
||||
virDomainPtr dom = NULL;
|
||||
|
||||
if (argc < 4) {
|
||||
ret = usage(argv[0], 1);
|
||||
usage(argv[0]);
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user