Minor fix to example program.

This commit is contained in:
Michael Kerrisk 2007-07-19 20:29:21 +00:00
parent 0adc4176a2
commit e055032eb6
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ display_info(const char *fpath, const struct stat *sb,
printf("%\-3s %2d %7lld %\-40s %d %s\\n",
(tflag == FTW_D) ? "d" : (tflag == FTW_DNR) ? "dnr" :
(tflag == FTW_DP) ? "dp" : (tflag == FTW_F) ? "f" :
(tflag == FTW_DP) ? "dp" : (tflag == FTW_SL) ? "sl" :
(tflag == FTW_NS) ? "ns" : (tflag == FTW_SL) ? "sl" :
(tflag == FTW_SLN) ? "sln" : "???",
ftwbuf\->level, (long long) sb\->st_size,
fpath, ftwbuf\->base, fpath + ftwbuf\->base);