index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-03-10 16:42:58 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-03-14 11:47:11 +1000 |
commit | d35a7fb6f36509a53e8b36d4eca03cef9d2c20db (patch) | |
tree | efefd55ccde80c3c69520388619fcfc026e04923 /lib | |
parent | 6c870953c563c69c7e833637fec292e291511b45 (diff) |
-rw-r--r-- | lib/libalpm/remove.c | 4 |
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; } |