From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keir Fraser Subject: Re: [PATCH] decompressors: fix string typo 'bufer' Date: Mon, 23 Jan 2012 13:38:33 +0000 Message-ID: References: <4F1D6E32020000780006E688@nat28.tlf.novell.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <4F1D6E32020000780006E688@nat28.tlf.novell.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Jan Beulich , "xen-devel@lists.xensource.com" Cc: pebolle@tiscali.nl List-Id: xen-devel@lists.xenproject.org On 23/01/2012 13:26, "Jan Beulich" wrote: > Signed-off-by: Paul Bolle > Signed-off-by: Jan Beulich Acked-by: Keir Fraser > --- a/xen/common/bunzip2.c > +++ b/xen/common/bunzip2.c > @@ -680,7 +680,7 @@ STATIC int INIT bunzip2(unsigned char *b > outbuf = malloc(BZIP2_IOBUF_SIZE); > > if (!outbuf) { > - error("Could not allocate output bufer"); > + error("Could not allocate output buffer"); > return RETVAL_OUT_OF_MEMORY; > } > if (buf) > @@ -688,7 +688,7 @@ STATIC int INIT bunzip2(unsigned char *b > else > inbuf = malloc(BZIP2_IOBUF_SIZE); > if (!inbuf) { > - error("Could not allocate input bufer"); > + error("Could not allocate input buffer"); > i = RETVAL_OUT_OF_MEMORY; > goto exit_0; > } > --- a/xen/common/unlzma.c > +++ b/xen/common/unlzma.c > @@ -556,7 +556,7 @@ STATIC int INIT unlzma(unsigned char *bu > else > inbuf = malloc(LZMA_IOBUF_SIZE); > if (!inbuf) { > - error("Could not allocate input bufer"); > + error("Could not allocate input buffer"); > goto exit_0; > } > > > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xensource.com > http://lists.xensource.com/xen-devel