]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - lib/decompress_bunzip2.c
arm: imx6: defconfig: update tx6 defconfigs
[karo-tx-linux.git] / lib / decompress_bunzip2.c
index a7b80c1d6a0d5fba9c4078969a8916cd41ff02f7..31c5f7675fbfa270a70a005247c8a3773067f5c0 100644 (file)
@@ -1,4 +1,3 @@
-/* vi: set sw = 4 ts = 4: */
 /*     Small bzip2 deflate implementation, by Rob Landley (rob@landley.net).
 
        Based on bzip2 decompression code by Julian R Seward (jseward@acm.org),
@@ -691,7 +690,7 @@ STATIC int INIT bunzip2(unsigned char *buf, 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)
@@ -699,7 +698,7 @@ STATIC int INIT bunzip2(unsigned char *buf, 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;
        }