aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/bunzip2.c
diff options
context:
space:
mode:
authorPaul Bolle <pebolle@tiscali.nl>2012-01-23 14:51:25 +0100
committerPaul Bolle <pebolle@tiscali.nl>2012-01-23 14:51:25 +0100
commitfbe7730763ffc1e35515eac1a2fe9d765fa3a309 (patch)
tree05d0cbfb920a46492e3392711b50e4cbc077a4c8 /xen/common/bunzip2.c
parent314dbb3238dc79d8a23d122bef135e5010346530 (diff)
downloadxen-fbe7730763ffc1e35515eac1a2fe9d765fa3a309.tar.gz
xen-fbe7730763ffc1e35515eac1a2fe9d765fa3a309.tar.bz2
xen-fbe7730763ffc1e35515eac1a2fe9d765fa3a309.zip
decompressors: fix string typo 'bufer'
Signed-off-by: Paul Bolle <pebolle@tiscali.nl> Signed-off-by: Jan Beulich <jbeulich@suse.com> Committed-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'xen/common/bunzip2.c')
-rw-r--r--xen/common/bunzip2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/common/bunzip2.c b/xen/common/bunzip2.c
index d87bdcff9e..2eb70ab6c4 100644
--- a/xen/common/bunzip2.c
+++ b/xen/common/bunzip2.c
@@ -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;
}