From: Brad King Date: Wed, 21 Oct 2015 15:58:51 +0000 (-0400) Subject: Fix typo in archive_write_add_filter_lzop.c comment X-Git-Tag: v3.1.900a~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e091ed9a17f513bd2d3883df0bcd5d4383e5f14a;p=thirdparty%2Flibarchive.git Fix typo in archive_write_add_filter_lzop.c comment --- diff --git a/libarchive/archive_write_add_filter_lzop.c b/libarchive/archive_write_add_filter_lzop.c index 088ecea51..c666551d1 100644 --- a/libarchive/archive_write_add_filter_lzop.c +++ b/libarchive/archive_write_add_filter_lzop.c @@ -85,7 +85,7 @@ static int archive_write_lzop_free(struct archive_write_filter *); #if defined(HAVE_LZO_LZOCONF_H) && defined(HAVE_LZO_LZO1X_H) /* Maximum block size. */ #define BLOCK_SIZE (256 * 1024) -/* Block infomation is composed of uncompressed size(4 bytes), +/* Block information is composed of uncompressed size(4 bytes), * compressed size(4 bytes) and the checksum of uncompressed data(4 bytes) * in this lzop writer. */ #define BLOCK_INfO_SIZE 12