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
1 changed files with 1 additions and 1 deletions

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);
}
} else {
pm_vfprintf(stdout, level, fmt, args);
pm_vfprintf(stderr, level, fmt, args);
}
}