xbps_warn_printf: always print regardless of XBPS_FLAG_VERBOSE.

This commit is contained in:
Juan RP 2011-01-30 18:31:36 +01:00
parent fca3d6b9bf
commit 42eb834e8d

View File

@ -109,9 +109,6 @@ xbps_warn_printf(const char *fmt, ...)
int flags = xbps_get_flags();
va_list ap;
if ((flags & XBPS_FLAG_VERBOSE) == 0)
return;
va_start(ap, fmt);
common_printf(stderr, "WARNING: ", fmt, ap);
va_end(ap);