From 225accad6a18cc112f401590e15abba35f7a332a Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 19 Mar 2023 19:25:57 +0000 Subject: [PATCH] FHS: Silence a warning as it gets in the way of the progress bar Signed-off-by: Michael Tremer --- src/libpakfire/fhs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libpakfire/fhs.c b/src/libpakfire/fhs.c index 971e783f..95acb11c 100644 --- a/src/libpakfire/fhs.c +++ b/src/libpakfire/fhs.c @@ -348,7 +348,7 @@ int pakfire_fhs_check_file(struct pakfire* pakfire, struct pakfire_file* file) { // Should this file exist at all? if (check->flags & PAKFIRE_FHS_MUSTNOTEXIST) { - ERROR(pakfire, "%s must not exist here\n", path); + DEBUG(pakfire, "%s must not exist here\n", path); return 1; } -- 2.47.3