tools/libxl: libxl_list_domain: fix typo in error message
authorJulien Grall <julien.grall@linaro.org>
Tue, 18 Mar 2014 20:40:49 +0000 (20:40 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Wed, 19 Mar 2014 11:04:23 +0000 (11:04 +0000)
Signed-off-by: Julien Grall <julien.grall@linaro.org>
Acked-by: Ian Campbell <ian.campbell@citrix.com>
tools/libxl/libxl.c

index 4ecdbbbbe2c06bc5f675cc44aeb1743bda247e87..30b0b06837c4cdf6be2eb2fa59a9f2d5ab301e63 100644 (file)
@@ -566,7 +566,7 @@ libxl_dominfo * libxl_list_domain(libxl_ctx *ctx, int *nb_domain_out)
 
     ret = xc_domain_getinfolist(ctx->xch, 0, 1024, info);
     if (ret<0) {
-        LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "geting domain info list");
+        LIBXL__LOG_ERRNO(ctx, LIBXL__LOG_ERROR, "getting domain info list");
         free(ptr);
         return NULL;
     }