summaryrefslogtreecommitdiffstats
path: root/lzlib.c
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:08:08 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:08:08 +0000
commitcffb4d6baffb84bc4f2f168ae3be7431e7a19a3e (patch)
tree52b702a077e13b87c1f94fdc7f9f9f537facc8e7 /lzlib.c
parentAdding debian version 1.7~rc1-1. (diff)
downloadlzlib-cffb4d6baffb84bc4f2f168ae3be7431e7a19a3e.tar.xz
lzlib-cffb4d6baffb84bc4f2f168ae3be7431e7a19a3e.zip
Merging upstream version 1.7.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'lzlib.c')
-rw-r--r--lzlib.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/lzlib.c b/lzlib.c
index 26764d0..2a47bee 100644
--- a/lzlib.c
+++ b/lzlib.c
@@ -121,15 +121,15 @@ const char * LZ_strerror( const enum LZ_Errno lz_errno )
switch( lz_errno )
{
case LZ_ok : return "ok";
- case LZ_bad_argument : return "bad argument";
- case LZ_mem_error : return "not enough memory";
- case LZ_sequence_error: return "sequence error";
- case LZ_header_error : return "header error";
- case LZ_unexpected_eof: return "unexpected eof";
- case LZ_data_error : return "data error";
- case LZ_library_error : return "library error";
+ case LZ_bad_argument : return "Bad argument";
+ case LZ_mem_error : return "Not enough memory";
+ case LZ_sequence_error: return "Sequence error";
+ case LZ_header_error : return "Header error";
+ case LZ_unexpected_eof: return "Unexpected eof";
+ case LZ_data_error : return "Data error";
+ case LZ_library_error : return "Library error";
}
- return "invalid error code";
+ return "Invalid error code";
}