]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Minor: documented sizes smaller 1770/head
authorCarl Woffenden <cwoffenden@gmail.com>
Mon, 2 Sep 2019 16:15:31 +0000 (18:15 +0200)
committerCarl Woffenden <cwoffenden@gmail.com>
Mon, 2 Sep 2019 16:15:31 +0000 (18:15 +0200)
contrib/single_file_decoder/examples/simple.c

index cacaf1fbe186ca1db5613161bf2d076ed37a424b..5646e5f200656502dac5e5f59e8b777838ba2439 100644 (file)
@@ -3050,8 +3050,8 @@ size_t ZSTD_decompress(void* dst, size_t dstLen, const void* src, size_t srcLen)
  * compare the resulting bytes with \c #rawDxt1.
  * \n
  * As a (naive) comparison, removing Zstd and building with "-Os -g0 simple.c"
- * results in a 48kB binary (macOS 10.14, Clang 10); re-adding Zstd increases
- * the binary by 67kB (after calling \c strip).
+ * results in a 44kB binary (macOS 10.14, Clang 10); re-adding Zstd increases
+ * the binary by 56kB (after calling \c strip).
  */
 int main() {
        size_t size = ZSTD_decompress(dstDxt1, sizeof dstDxt1, srcZstd, sizeof srcZstd);