summaryrefslogtreecommitdiff
path: root/libarchive/archive_read_support_format_lha.c
diff options
context:
space:
mode:
authorGraham Percival <gperciva@tarsnap.com>2016-12-30 15:21:09 -0800
committerGraham Percival <gperciva@tarsnap.com>2016-12-30 16:35:47 -0800
commit54027a7ccd7b28dca995ef675b571241ff767c6c (patch)
tree125bb7f6401f8f169fdcbe9140d44b27a46238f1 /libarchive/archive_read_support_format_lha.c
parentab94a813b0f64cbc1bcb952bf55424a2d9c7f1d9 (diff)
downloadlibarchive-54027a7ccd7b28dca995ef675b571241ff767c6c.tar.gz
Spelling fixes
Sponsored by: Tarsnap Backup Inc.
Diffstat (limited to 'libarchive/archive_read_support_format_lha.c')
-rw-r--r--libarchive/archive_read_support_format_lha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/archive_read_support_format_lha.c b/libarchive/archive_read_support_format_lha.c
index a7f1d8d9..52a5531b 100644
--- a/libarchive/archive_read_support_format_lha.c
+++ b/libarchive/archive_read_support_format_lha.c
@@ -1711,7 +1711,7 @@ lha_crc16(uint16_t crc, const void *pp, size_t len)
*/
for (;len >= 8; len -= 8) {
/* This if statement expects compiler optimization will
- * remove the stament which will not be executed. */
+ * remove the statement which will not be executed. */
#undef bswap16
#if defined(_MSC_VER) && _MSC_VER >= 1400 /* Visual Studio */
# define bswap16(x) _byteswap_ushort(x)