From 434d93ccc7ec2df2fd52e9ced52f4e02cb176b31 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Mon, 12 Feb 2007 00:41:08 +0000 Subject: This should be an ERROR, not a WARNING --- lib/libalpm/remove.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libalpm/remove.c') 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); } } -- cgit v1.2.3-24-g4f1b