diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2011-12-05 13:00:34 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-12-06 09:53:40 +0100 |
commit | 90802ed9c3dbab2e067bd9fc67a30e66e6774e8f (patch) | |
tree | ac379380a669ad3c2a7ab0c3d923f1e9644ae885 /lib/decompress_bunzip2.c | |
parent | 05183189ee5df8799b22c56d93f0f69b8490e33f (diff) | |
download | linux-3.10-90802ed9c3dbab2e067bd9fc67a30e66e6774e8f.tar.gz linux-3.10-90802ed9c3dbab2e067bd9fc67a30e66e6774e8f.tar.bz2 linux-3.10-90802ed9c3dbab2e067bd9fc67a30e66e6774e8f.zip |
treewide: Fix comment and string typo 'bufer'
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'lib/decompress_bunzip2.c')
-rw-r--r-- | lib/decompress_bunzip2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/decompress_bunzip2.c b/lib/decompress_bunzip2.c index a7b80c1d6a0..3380297768d 100644 --- a/lib/decompress_bunzip2.c +++ b/lib/decompress_bunzip2.c @@ -691,7 +691,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 +699,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; } |