summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2013-12-30 04:51:20 +0100
committerAllan McRae <allan@archlinux.org>2014-01-06 05:38:49 +0100
commit6a656c7429c6fce44abf6f83657dd7b423979cd9 (patch)
treeebf7e46357e50a901cdecc40a3e4ae1cd0da2e94 /src
parent452ee39de180c5c77f2f264d38a7c4d5925c1099 (diff)
downloadpacman-6a656c7429c6fce44abf6f83657dd7b423979cd9.tar.gz
pacman-6a656c7429c6fce44abf6f83657dd7b423979cd9.tar.xz
conf.c: add missing newline to warning
Fixes tests that use pacman's output when built without libcurl. Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c
index cf8a417b..05c4610a 100644
--- a/src/pacman/conf.c
+++ b/src/pacman/conf.c
@@ -716,7 +716,7 @@ static int setup_libalpm(void)
if(config->xfercommand) {
alpm_option_set_fetchcb(handle, download_with_xfercommand);
} else if(!(alpm_capabilities() & ALPM_CAPABILITY_DOWNLOADER)) {
- pm_printf(ALPM_LOG_WARNING, _("no '%s' configured"), "XferCommand");
+ pm_printf(ALPM_LOG_WARNING, _("no '%s' configured\n"), "XferCommand");
}
if(config->totaldownload) {