From: Eric Biggers Date: Sat, 21 Nov 2015 02:18:32 +0000 (-0600) Subject: resource.c: fix comment about 4 GiB cutoff X-Git-Tag: v1.9.0~53 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=f370a82a53f55b8713266263096b96e07e02f4a0 resource.c: fix comment about 4 GiB cutoff --- diff --git a/src/resource.c b/src/resource.c index efdbdd40..04e924bb 100644 --- a/src/resource.c +++ b/src/resource.c @@ -57,8 +57,8 @@ * "chunk table" provides the offset, in bytes relative to the end of the * chunk table, of the start of each compressed chunk, except for the first * chunk which is omitted as it always has an offset of 0. Chunk table - * entries are 32-bit for resources <= 4 GiB uncompressed and 64-bit for - * resources > 4 GiB uncompressed. + * entries are 32-bit for resources < 4 GiB uncompressed and 64-bit for + * resources >= 4 GiB uncompressed. * * - Solid resource format (distinguished by the use of WIM_RESHDR_FLAG_SOLID * instead of WIM_RESHDR_FLAG_COMPRESSED): similar to the original format, but