Skip to content

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
Patch 0003-Fix-the-aready-already-typo.patch from the Debian/Ubuntu package.
  • Loading branch information
tillkamppeter committed Apr 2, 2024
1 parent 6eec00a commit f8501f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/algo0x0d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ BandPlane * Algo0x0D::compress(const Request & request, unsigned char *data,
/* Zero value byte padding for data size alignment to 4-byte boundary. */
unsigned long zerosPad = 4 - ( outputSize % 4 );

/* Pad anyway even if aready aligned. */
/* Pad anyway even if already aligned. */
if ( outputSize + zerosPad <= maximumBufferSize ) {
while ( zerosPad-- ) {
output[ outputSize++ ] = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/cache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ bool CacheEntry::restoreIntoMemory()

if (!_tempFile) {
ERRORMSG(_("Trying to restore a page instance into memory which is "
"aready into memory"));
"already into memory"));
return false;
}

Expand Down

0 comments on commit f8501f2

Please sign in to comment.