[pacman-dev] [PATCH v4 1/2] pacman/query.c: in query_fileowner, make is_dir an int

iff at escondida.tk iff at escondida.tk
Thu Jan 25 20:56:38 UTC 2018


From: Ivy Foster <iff at escondida.tk>

S_ISDIR is int and "returns non-zero" if the file is a directory.

Signed-off-by: Ivy Foster <iff at escondida.tk>
---
 src/pacman/query.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/pacman/query.c b/src/pacman/query.c
index 4a37a338..91ca78a7 100644
--- a/src/pacman/query.c
+++ b/src/pacman/query.c
@@ -158,8 +158,9 @@ static int query_fileowner(alpm_list_t *targets)
 		char rpath[PATH_MAX], *rel_path;
 		struct stat buf;
 		alpm_list_t *i;
-		size_t len, is_dir;
+		size_t len;
 		unsigned int found = 0;
+		int is_dir;
 
 		if((filename = strdup(t->data)) == NULL) {
 			goto targcleanup;
-- 
2.16.1


More information about the pacman-dev mailing list