From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PATCH] libxl: libxl_domain_info: fix typo in error message Date: Tue, 2 Dec 2014 13:40:19 -0500 Message-ID: <20141202184019.GH32385@laptop.dumpdata.com> References: <1417430853-26347-1-git-send-email-euan.harris@citrix.com> <1417432541.29138.8.camel@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1417432541.29138.8.camel@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Ian Campbell Cc: Ian.Jackson@eu.citrix.com, Euan Harris , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Mon, Dec 01, 2014 at 11:15:41AM +0000, Ian Campbell wrote: > On Mon, 2014-12-01 at 10:47 +0000, Euan Harris wrote: > > Signed-off-by: Euan Harris > > Acked-by: Ian Campbell > > This is so trivial as to not need a release ack IMHO, I'll apply next > time I'm doing such things unless someone beats me to it... > > > --- > > tools/libxl/libxl.c | 2 +- > > 1 files changed, 1 insertions(+), 1 deletions(-) > > > > diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c > > index f84f7c2..c50c323 100644 > > --- a/tools/libxl/libxl.c > > +++ b/tools/libxl/libxl.c > > @@ -674,7 +674,7 @@ int libxl_domain_info(libxl_ctx *ctx, libxl_dominfo *info_r, > > > > ret = xc_domain_getinfolist(ctx->xch, domid, 1, &xcinfo); > > 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"); > > return ERROR_FAIL; > > } > > if (ret==0 || xcinfo.domain != domid) return ERROR_INVAL; > >