alpm/remove.c: add newlines to debug output

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Andrew Gregory 2013-03-10 16:42:58 -04:00 committed by Allan McRae
parent 6c870953c5
commit d35a7fb6f3
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}