tfix extra warning - dmenu - Dmenu fork with xft fonts.
(HTM) git clone git://r-36.net/dmenu
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 16a0c0d52aa947b3fe8c9285986567189537d339
(DIR) parent 5867c533909b8b6fd8318f307460e894ca8fee3b
(HTM) Author: Connor Lane Smith <cls@lubutu.com>
Date: Thu, 14 Jul 2011 20:03:00 +0100
fix extra warning
Diffstat:
lsx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/lsx.c b/lsx.c
t@@ -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);