From d35a7fb6f36509a53e8b36d4eca03cef9d2c20db Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Sun, 10 Mar 2013 16:42:58 -0400 Subject: alpm/remove.c: add newlines to debug output Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- lib/libalpm/remove.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libalpm/remove.c') diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 0642e04a..d0cd613c 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -278,7 +278,7 @@ static int dir_is_mountpoint(alpm_handle_t *handle, const char *directory, struct stat dir_stbuf; if(stat(directory, &dir_stbuf) < 0) { _alpm_log(handle, ALPM_LOG_DEBUG, - "failed to stat directory %s: %s", + "failed to stat directory %s: %s\n", directory, strerror(errno)); return 0; } @@ -290,7 +290,7 @@ static int dir_is_mountpoint(alpm_handle_t *handle, const char *directory, snprintf(parent_dir, PATH_MAX, "%s..", directory); if(stat(parent_dir, &parent_stbuf) < 0) { _alpm_log(handle, ALPM_LOG_DEBUG, - "failed to stat parent of %s: %s: %s", + "failed to stat parent of %s: %s: %s\n", directory, parent_dir, strerror(errno)); return 0; } -- cgit v1.2.3-24-g4f1b