decompressors: fix string typo 'bufer'
authorPaul Bolle <pebolle@tiscali.nl>
Mon, 23 Jan 2012 13:51:25 +0000 (14:51 +0100)
committerPaul Bolle <pebolle@tiscali.nl>
Mon, 23 Jan 2012 13:51:25 +0000 (14:51 +0100)
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Committed-by: Jan Beulich <jbeulich@suse.com>
xen/common/bunzip2.c
xen/common/unlzma.c

index d87bdcff9e81f2f31982c336b51ab9634996e46a..2eb70ab6c463cf16b7c62d9b2e1e060fae58a6f0 100644 (file)
@@ -680,7 +680,7 @@ STATIC int INIT bunzip2(unsigned char *buf, unsigned int len,
                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 *buf, unsigned int len,
        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;
        }
index 87b9e0a9642fe622f998f48a53898e0125375941..719fd0d5c859b3af9f5177e76e70e75a746ee811 100644 (file)
@@ -556,7 +556,7 @@ STATIC int INIT unlzma(unsigned char *buf, unsigned int in_len,
        else
                inbuf = malloc(LZMA_IOBUF_SIZE);
        if (!inbuf) {
-               error("Could not allocate input bufer");
+               error("Could not allocate input buffer");
                goto exit_0;
        }