From 06840f14b465d9db53646ab0cbc2d4b3526bd255 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sun, 3 Jul 2011 10:31:03 -0500 Subject: Fix debug logger without a newline Signed-off-by: Dan McGee --- lib/libalpm/dload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/libalpm/dload.c b/lib/libalpm/dload.c index fd83aac0..9042544d 100644 --- a/lib/libalpm/dload.c +++ b/lib/libalpm/dload.c @@ -211,7 +211,7 @@ static int curl_download_internal(alpm_handle_t *handle, /* a previous partial download exists, resume from end of file. */ open_mode = "ab"; curl_easy_setopt(handle->curl, CURLOPT_RESUME_FROM, (long)st.st_size); - _alpm_log(handle, PM_LOG_DEBUG, "tempfile found, attempting continuation"); + _alpm_log(handle, PM_LOG_DEBUG, "tempfile found, attempting continuation\n"); dlfile.initial_size = (double)st.st_size; } -- cgit v1.2.3-24-g4f1b