From b5299924c2025be425c6c436c6df4a9c97c615ee Mon Sep 17 00:00:00 2001 From: "C. Masloch" Date: Thu, 26 May 2022 11:58:37 +0200 Subject: [PATCH] exeflat: update comments before prepending entry header --- utils/exeflat.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/exeflat.c b/utils/exeflat.c index 50c9b7c..3ad8e9c 100644 --- a/utils/exeflat.c +++ b/utils/exeflat.c @@ -577,9 +577,9 @@ int main(int argc, char **argv) rename("tmp.sys", "tmp.bin"); } - /* argv[2] now contains the final flattened file: just - header and trailer need to be added */ - /* the compressed file has two chunks max */ + /* tmp.bin now contains the final flattened file: just + the UPX entry header needs to be added. */ + /* the compressed file may exceed 64 KiB for DOS/EXE format. */ if ((dest = fopen(argv[2], "wb")) == NULL) {