From 2de3cd3dbcd43ab62f0666e5f3c84f53ab21aa72 Mon Sep 17 00:00:00 2001 From: ckolivas Date: Sun, 1 Mar 2026 14:23:48 +1100 Subject: [PATCH] Display what directory a temporary output file is being written to. This helps enable debugging inadequate space errors. --- lrzip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lrzip.c b/lrzip.c index 3f0b290..c559043 100644 --- a/lrzip.c +++ b/lrzip.c @@ -340,6 +340,7 @@ int open_tmpoutfile(rzip_control *control) if (unlikely(!control->outfile)) fatal_return(("Failed to allocate outfile name\n"), -1); strcpy(control->outfile, control->tmpdir); + print_maxverbose("Writing temporary file to %s\n", control->tmpdir); strcat(control->outfile, "lrzipout.XXXXXX"); }