From f125f414285879c0cc48d760b4bed08adef352f8 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Thu, 23 Oct 2025 21:26:34 +0100 Subject: [PATCH] Correct the comment naming pv__target_bufsize, which should be control.target_buffer_size. --- src/include/pv-internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/pv-internal.h b/src/include/pv-internal.h index 43a9459..1c48fee 100644 --- a/src/include/pv-internal.h +++ b/src/include/pv-internal.h @@ -376,9 +376,9 @@ struct pvstate_s { * The transfer buffer is used for moving data from the input files * to the output when splice() is not available. * - * If buffer_size is smaller than pv__target_bufsize, then + * If buffer_size is smaller than control.target_buffer_size, then * pv_transfer() will try to reallocate transfer_buffer to make - * buffer_size equal to pv__target_bufsize. + * buffer_size equal to control.target_buffer_size. * * Data from the input files is read into the buffer; read_position * is the offset in the buffer that we've read data up to.