X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=lsx.c;h=57c03bf1e26736f6a121eda1609cf9bdd3335204;hb=c71abdc65c8a7ff9597f7b6b5bf60a59be174224;hp=bbe57d461ff56d3da89dc3f2419c2d11fc6ed408;hpb=0288b576cabc42c649250dbbfe8bd93f7f3b5e8c;p=dmenu.git diff --git a/lsx.c b/lsx.c index bbe57d4..57c03bf 100644 --- a/lsx.c +++ b/lsx.c @@ -3,12 +3,13 @@ #include #include #include -#include #include #include static void lsx(const char *dir); +static int status = EXIT_SUCCESS; + int main(int argc, char *argv[]) { int i; @@ -17,7 +18,7 @@ main(int argc, char *argv[]) { lsx("."); else for(i = 1; i < argc; i++) lsx(argv[i]); - return EXIT_SUCCESS; + return status; } void @@ -28,12 +29,13 @@ lsx(const char *dir) { DIR *dp; if(!(dp = opendir(dir))) { + status = EXIT_FAILURE; perror(dir); return; } while((d = readdir(dp))) - if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < sizeof buf - && !stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) + if(snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name) < (int)sizeof buf + && stat(buf, &st) == 0 && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) puts(d->d_name); closedir(dp); }