Skip to content

Commit

Permalink
Fix typo in blockIncrProcess().
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsteele committed Mar 12, 2023
1 parent 1281a6e commit 5c1f78d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/xml/release.xml
Expand Up @@ -53,6 +53,7 @@
<commit subject="Rename BlockHash to BlockChecksum."/>
<commit subject="Update default block size and super block values based on testing."/>
<commit subject="Ensure no continuations when block size equals super block size."/>
<commit subject="Fix typo in blockIncrProcess()."/>

<release-item-contributor-list>
<release-item-contributor id="david.steele"/>
Expand Down
2 changes: 1 addition & 1 deletion src/command/backup/blockIncr.c
Expand Up @@ -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);
Expand Down

0 comments on commit 5c1f78d

Please sign in to comment.