aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lsx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lsx.c b/lsx.c
index bbe57d4..79b506b 100644
--- a/lsx.c
+++ b/lsx.c
@@ -32,7 +32,7 @@ lsx(const char *dir) {
32 return; 32 return;
33 } 33 }
34 while((d = readdir(dp))) 34 while((d = readdir(dp)))
35 if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < sizeof buf 35 if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < (ssize_t)sizeof buf
36 && !stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) 36 && !stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0)
37 puts(d->d_name); 37 puts(d->d_name);
38 closedir(dp); 38 closedir(dp);