summaryrefslogtreecommitdiffstats
path: root/encoder_base.h
diff options
context:
space:
mode:
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] );
}