[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] xl: correct references to long-removed function in error messages
commit 9d801e25c94be89e3ce7baa9573c860596c44db0 Author: Matthew Daley <mattjd@xxxxxxxxx> AuthorDate: Wed Oct 30 20:51:58 2013 +1300 Commit: Ian Campbell <ian.campbell@xxxxxxxxxx> CommitDate: Thu Oct 31 21:55:52 2013 +0000 xl: correct references to long-removed function in error messages Signed-off-by: Matthew Daley <mattjd@xxxxxxxxx> Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/libxl/xl_cmdimpl.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c index d8f9aba..40feb7d 100644 --- a/tools/libxl/xl_cmdimpl.c +++ b/tools/libxl/xl_cmdimpl.c @@ -3251,7 +3251,7 @@ static void list_vm(void) info = libxl_list_vm(ctx, &nb_vm); if (!info) { - fprintf(stderr, "libxl_domain_infolist failed.\n"); + fprintf(stderr, "libxl_list_vm failed.\n"); exit(1); } printf("UUID ID name\n"); @@ -4147,7 +4147,7 @@ int main_list(int argc, char **argv) if (optind >= argc) { info = libxl_list_domain(ctx, &nb_domain); if (!info) { - fprintf(stderr, "libxl_domain_infolist failed.\n"); + fprintf(stderr, "libxl_list_domain failed.\n"); return 1; } info_free = info; @@ -4856,7 +4856,7 @@ int main_sharing(int argc, char **argv) if (optind >= argc) { info = libxl_list_domain(ctx, &nb_domain); if (!info) { - fprintf(stderr, "libxl_domain_infolist failed.\n"); + fprintf(stderr, "libxl_list_domain failed.\n"); return 1; } info_free = info; @@ -5070,7 +5070,7 @@ static int sched_domain_output(libxl_scheduler sched, int (*output)(int), info = libxl_list_domain(ctx, &nb_domain); if (!info) { - fprintf(stderr, "libxl_domain_infolist failed.\n"); + fprintf(stderr, "libxl_list_domain failed.\n"); return 1; } poolinfo = libxl_list_cpupool(ctx, &n_pools); @@ -6025,7 +6025,7 @@ int main_claims(int argc, char **argv) info = libxl_list_domain(ctx, &nb_domain); if (!info) { - fprintf(stderr, "libxl_domain_infolist failed.\n"); + fprintf(stderr, "libxl_list_domain failed.\n"); return 1; } -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |