From: Connor Lane Smith Date: Thu, 14 Jul 2011 19:03:00 +0000 (+0100) Subject: fix extra warning X-Git-Url: https://git.armaanb.net/?p=dmenu.git;a=commitdiff_plain;h=16a0c0d52aa947b3fe8c9285986567189537d339 fix extra warning --- 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) { 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);