dmenu

customized build of dmenu, the dynamic menu for X
git clone git://src.adamsgaard.dk/dmenu
Log | Files | Refs | README | LICENSE

commit 16a0c0d52aa947b3fe8c9285986567189537d339
parent 5867c533909b8b6fd8318f307460e894ca8fee3b
Author: Connor Lane Smith <cls@lubutu.com>
Date:   Thu, 14 Jul 2011 20:03:00 +0100

fix extra warning
Diffstat:
Mlsx.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);