diff options
| author | 2011-07-14 20:03:00 +0100 | |
|---|---|---|
| committer | 2011-07-14 20:03:00 +0100 | |
| commit | 16a0c0d52aa947b3fe8c9285986567189537d339 (patch) | |
| tree | 0e5aa93804c822f19f9819a63b781e36122f4d5b /lsx.c | |
| parent | simpler vline (diff) | |
fix extra warning
Diffstat (limited to '')
| -rw-r--r-- | lsx.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ lsx(const char *dir) { return; } while((d = readdir(dp))) - if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < sizeof buf + if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < (ssize_t)sizeof buf && !stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) puts(d->d_name); closedir(dp); |
