From f85b2f817faa5e86169b4cd80539da4b7f603066 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sat, 24 Nov 2018 01:26:19 +0000 Subject: [PATCH] comment out compress timing --- lib/zpm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/zpm.c b/lib/zpm.c index 3f1cb2b..359c095 100644 --- a/lib/zpm.c +++ b/lib/zpm.c @@ -680,12 +680,14 @@ int zpm_import(struct zpm *zpm, char *path, uint32_t flags, char *hash) { if (!havedata) { /* compress */ +// fprintf(stderr, "compressing\n"); outbuf = compresslzma(content, sbuf.st_size, &outlen); if (!outbuf) { fprintf(stderr, "compresslzma failed\n"); munmap(content, sbuf.st_size); return 0; } +//// fprintf(stderr, "compress finished\n"); /* insert */ if (haverow) { -- 2.40.0