diff src/lzfu.c @ 390:5c0ce43c7532

Fix a number of spelling mistakes Changes-by: codespell -w Suggested-by: codespell, spellintian, lintian I: libpst4: spelling-error-in-binary usr/lib/x86_64-linux-gnu/libpst.so.4.1.14 occured occurred I: libpst-dev: spelling-error-in-manpage usr/share/man/man5/outlook.pst.5.gz Attachement Attachment
author Paul Wise <pabs3@bonedaddy.net>
date Sat, 21 Dec 2019 21:25:45 +0800
parents cf3df962f1e5
children
line wrap: on
line diff
--- a/src/lzfu.c	Sat Dec 21 21:25:45 2019 +0800
+++ b/src/lzfu.c	Sat Dec 21 21:25:45 2019 +0800
@@ -40,7 +40,7 @@
 	unsigned int dict_length = 0;   // the dictionary pointer
 	lzfuheader lzfuhdr;             // the header of the lzfu block
 	unsigned char flags;            // 8 bits of flags (1=2byte block pointer into the dict, 0=1 byte literal)
-	unsigned char flag_mask;        // look at one flag bit each time thru the loop
+	unsigned char flag_mask;        // look at one flag bit each time through the loop
 	uint32_t i;
 	char    *out_buf;
 	uint32_t out_ptr = 0;