From 28453e862a13ce6dbc9cd220b6c7a2405bcb9ab0 Mon Sep 17 00:00:00 2001 From: tTh Date: Mon, 11 Nov 2024 17:24:03 +0100 Subject: [PATCH] msg when export dir not writable --- Fonderie/utilfuncs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Fonderie/utilfuncs.c b/Fonderie/utilfuncs.c index 2521f96..b2b22fd 100644 --- a/Fonderie/utilfuncs.c +++ b/Fonderie/utilfuncs.c @@ -43,6 +43,7 @@ foo = access(path, W_OK); fprintf(stderr, " access '%s' = %d\n", path, foo); #endif if (0 != foo) { + if (verbosity) fprintf(stderr, "%s: can't write\n", path); return 0; }