From: Michael Tremer Date: Sun, 19 Mar 2023 19:25:57 +0000 (+0000) Subject: FHS: Silence a warning as it gets in the way of the progress bar X-Git-Tag: 0.9.29~237 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=225accad6a18cc112f401590e15abba35f7a332a;p=pakfire.git FHS: Silence a warning as it gets in the way of the progress bar Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/fhs.c b/src/libpakfire/fhs.c index 971e783fd..95acb11c5 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; }