Skip to content

Commit d08be00

Browse files
authored
[code style] Fix clang-tidy hit after 3d68570 (#1183)
1 parent b41e51b commit d08be00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sources/middle-layer/compression/deflate/compression_units/auxiliary_units.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ auto deflate_body_with_dictionary(deflate_state<execution_path_t::software>& str
319319
uint32_t avail_in = stream.isal_stream_ptr_->avail_in;
320320
int32_t buf_hist_start = 0;
321321
uint32_t size = 0;
322-
uint16_t flush_start = stream.isal_stream_ptr_->flush;
322+
const uint16_t flush_start = stream.isal_stream_ptr_->flush;
323323

324324
update_hash(stream, isal_state->buffer, isal_state->b_bytes_processed);
325325
uint32_t history_size = get_history_size(stream, start_in, buf_hist_start);

0 commit comments

Comments
 (0)