commit 50887719cc35cdada6177d9eec292c4b20ef40c9 parent a133071ccc9fef628541a31fd68723ad34e751ce Author: Sebastiano Tronto <sebastiano@tronto.net> Date: Mon, 8 May 2023 20:58:47 +0200 Added message on total bytecount for tables Diffstat:
M | build/build.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/build/build.c b/build/build.c @@ -331,5 +331,7 @@ main(void) if (fwrite(buf, 1, b, file) != b) return 1; + fprintf(stderr, "Written %zu bytes\n", b); + return 0; }