summaryrefslogtreecommitdiffstats
path: root/encoder_base.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-01-13 10:15:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-01-13 10:15:31 +0000
commit97bfec5482ccb967b680e5e4c5039dde9d7c2515 (patch)
tree333c506a25950748aeab8c68dd63a9ac37ea022c /encoder_base.h
parentReleasing debian version 1.20-4. (diff)
downloadlzip-97bfec5482ccb967b680e5e4c5039dde9d7c2515.tar.xz
lzip-97bfec5482ccb967b680e5e4c5039dde9d7c2515.zip
Merging upstream version 1.21.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'encoder_base.h')
-rw-r--r--encoder_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/encoder_base.h b/encoder_base.h
index 6a651f0..4c1962f 100644
--- a/encoder_base.h
+++ b/encoder_base.h
@@ -1,5 +1,5 @@
/* Lzip - LZMA lossless data compressor
- Copyright (C) 2008-2018 Antonio Diaz Diaz.
+ Copyright (C) 2008-2019 Antonio Diaz Diaz.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -232,7 +232,7 @@ class Range_encoder
unsigned ff_count;
const int outfd; // output file descriptor
uint8_t cache;
- File_header header;
+ Lzip_header header;
void shift_low()
{
@@ -260,7 +260,7 @@ public:
ff_count = 0;
cache = 0;
header.dictionary_size( dictionary_size );
- for( int i = 0; i < File_header::size; ++i )
+ for( int i = 0; i < Lzip_header::size; ++i )
put_byte( header.data[i] );
}