* [PATCH] decompressors: fix string typo 'bufer'
@ 2012-01-23 13:26 Jan Beulich
2012-01-23 13:38 ` Keir Fraser
0 siblings, 1 reply; 2+ messages in thread
From: Jan Beulich @ 2012-01-23 13:26 UTC (permalink / raw)
To: xen-devel@lists.xensource.com; +Cc: pebolle
[-- Attachment #1: Type: text/plain, Size: 987 bytes --]
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- 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;
}
[-- Attachment #2: decompress-typos.patch --]
[-- Type: text/plain, Size: 1023 bytes --]
decompressors: fix string typo 'bufer'
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- 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;
}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] decompressors: fix string typo 'bufer'
2012-01-23 13:26 [PATCH] decompressors: fix string typo 'bufer' Jan Beulich
@ 2012-01-23 13:38 ` Keir Fraser
0 siblings, 0 replies; 2+ messages in thread
From: Keir Fraser @ 2012-01-23 13:38 UTC (permalink / raw)
To: Jan Beulich, xen-devel@lists.xensource.com; +Cc: pebolle
On 23/01/2012 13:26, "Jan Beulich" <JBeulich@suse.com> wrote:
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Keir Fraser <keir@xen.org>
> --- 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
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-23 13:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-23 13:26 [PATCH] decompressors: fix string typo 'bufer' Jan Beulich
2012-01-23 13:38 ` Keir Fraser
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).