From b6914d16cc7ee97f538b569b760c3ced18ee1fa9 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Thu, 14 Jul 2011 00:05:30 +1000 Subject: Print callback messages to stderr Fixes FS#25099. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- src/pacman/callback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/pacman/callback.c b/src/pacman/callback.c index 873e3fc9..5ee4e5af 100644 --- a/src/pacman/callback.c +++ b/src/pacman/callback.c @@ -690,7 +690,7 @@ void cb_log(alpm_loglevel_t level, const char *fmt, va_list args) output = alpm_list_add(output, string); } } else { - pm_vfprintf(stdout, level, fmt, args); + pm_vfprintf(stderr, level, fmt, args); } } -- cgit v1.2.3-24-g4f1b