Codebase list splix / b571138
Fix the 'aready' → 'already' typo Last-Update: 2016-06-12 Didier Raboud authored 6 years ago Didier Raboud committed 6 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
447447 /* Zero value byte padding for data size alignment to 4-byte boundary. */
448448 unsigned long zerosPad = 4 - ( outputSize % 4 );
449449
450 /* Pad anyway even if aready aligned. */
450 /* Pad anyway even if already aligned. */
451451 if ( outputSize + zerosPad <= maximumBufferSize ) {
452452 while ( zerosPad-- ) {
453453 output[ outputSize++ ] = 0;
568568
569569 if (!_tempFile) {
570570 ERRORMSG(_("Trying to restore a page instance into memory which is "
571 "aready into memory"));
571 "already into memory"));
572572 return false;
573573 }
574574