summaryrefslogtreecommitdiffstats
path: root/lzlib.c
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:07:54 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 14:07:54 +0000
commitb63c94237d26a4795bf71572a994705b93eb16a8 (patch)
tree2dd5bbdee1bdf4dcfedeb9fdff928ef541b4f50d /lzlib.c
parentAdding upstream version 1.7~rc1. (diff)
downloadlzlib-b63c94237d26a4795bf71572a994705b93eb16a8.tar.xz
lzlib-b63c94237d26a4795bf71572a994705b93eb16a8.zip
Adding upstream version 1.7.upstream/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";
}