From: Ivy Foster <[email protected]>

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

Signed-off-by: Ivy Foster <[email protected]>
---
I know this is super trivial; I just noticed it while working on the
following patch, and didn't want to make an unrelated change in it.

 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

Reply via email to