blf: fix indentation.

Fix indentation of a while() clause, so that it's indented less than the
body of the while() loop.
This commit is contained in:
Guy Harris 2021-09-11 14:27:48 -07:00
parent 8b614c6a1c
commit 8307d5d9be
1 changed files with 1 additions and 1 deletions

View File

@ -556,7 +556,7 @@ blf_read_bytes_or_eof(blf_params_t *params, guint64 real_pos, void *target_buffe
break;
case BLF_COMPRESSION_ZLIB:
while (current_container_index <= end_container_index) {
while (current_container_index <= end_container_index) {
if (!blf_pull_logcontainer_into_memory(params, current_container_index)) {
ws_debug("blf_read_bytes_or_eof: cannot pull in container");
return FALSE;