]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Fix typo in archive_write_add_filter_lzop.c comment
authorBrad King <brad.king@kitware.com>
Wed, 21 Oct 2015 15:58:51 +0000 (11:58 -0400)
committerBrad King <brad.king@kitware.com>
Mon, 26 Oct 2015 12:59:26 +0000 (08:59 -0400)
libarchive/archive_write_add_filter_lzop.c

index 088ecea5167a79b189ff252d27f2f21f49eb6000..c666551d1da8f031114db619593d91ea21d0be41 100644 (file)
@@ -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