aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/unlzma.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/unlzma.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/unlzma.c')
-rw-r--r--xen/common/unlzma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/unlzma.c b/xen/common/unlzma.c
index 87b9e0a964..719fd0d5c8 100644
--- a/xen/common/unlzma.c
+++ b/xen/common/unlzma.c
@@ -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;
}