diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-02-12 00:41:08 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-02-12 00:41:08 +0000 |
commit | 434d93ccc7ec2df2fd52e9ced52f4e02cb176b31 (patch) | |
tree | 17ad5bbd92ca8032925f00a2bbb5c6a68e956c28 | |
parent | b6d991cf7b3f3227d06bdf13e1d515b1cf7c90f4 (diff) | |
download | pacman-434d93ccc7ec2df2fd52e9ced52f4e02cb176b31.tar.xz |
This should be an ERROR, not a WARNING
-rw-r--r-- | lib/libalpm/remove.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c index 9933d4cc..f230dfa7 100644 --- a/lib/libalpm/remove.c +++ b/lib/libalpm/remove.c @@ -183,7 +183,7 @@ static int can_remove_file(const char *path) if(access(file, F_OK) == 0) { /* only return failure if the file ACTUALLY exists and we don't have * permissions */ - _alpm_log(PM_LOG_WARNING, _("cannot remove file '%s': %s"), file, strerror(errno)); + _alpm_log(PM_LOG_ERROR, _("cannot remove file '%s': %s"), file, strerror(errno)); return(0); } } |