From 5c1f78d4dd62c37218285d13b09a9450eb3a588e Mon Sep 17 00:00:00 2001 From: David Steele Date: Sun, 12 Mar 2023 22:38:38 +0700 Subject: [PATCH] Fix typo in blockIncrProcess(). --- doc/xml/release.xml | 1 + src/command/backup/blockIncr.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/xml/release.xml b/doc/xml/release.xml index 01e35dbdf..6298fee1b 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -53,6 +53,7 @@ + diff --git a/src/command/backup/blockIncr.c b/src/command/backup/blockIncr.c index 042afe916..4ae7f3dd3 100644 --- a/src/command/backup/blockIncr.c +++ b/src/command/backup/blockIncr.c @@ -225,7 +225,7 @@ blockIncrProcess(THIS_VOID, const Buffer *const input, Buffer *const output) // Write the super block if (this->blockOutWrite != NULL && (this->done || this->blockOutSize >= this->superBlockSize)) { - // Explicitly terminate the block if all block sizes are equal. This is not required if that last block is smaller than + // Explicitly terminate the block if all block sizes are equal. This is not required if the last block is smaller than // the block size. if (this->blockOutSize % this->blockSize == 0) ioWriteVarIntU64(this->blockOutWrite, 0);