1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Print callback messages to stderr

Fixes FS#25099.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Allan McRae 2011-07-14 00:05:30 +10:00 committed by Dan McGee
parent a98babbfef
commit b6914d16cc

View File

@ -690,7 +690,7 @@ void cb_log(alpm_loglevel_t level, const char *fmt, va_list args)
output = alpm_list_add(output, string); output = alpm_list_add(output, string);
} }
} else { } else {
pm_vfprintf(stdout, level, fmt, args); pm_vfprintf(stderr, level, fmt, args);
} }
} }