summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-08-22 18:34:36 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-08-22 18:37:23 -0400
commitd548b86e120db7e1327eea957a698d4bb874a1fb (patch)
tree874e34926ee12fbbf076a834d6822ab751cf378b /util.h
parent2a561b66f48ab4deafb0a031cad3ad541ea79449 (diff)
downloadbfs-d548b86e120db7e1327eea957a698d4bb874a1fb.tar.xz
Avoid multiple extra stat()s of broken symlinks for -xtype
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h
index 6798fb9..e23acdc 100644
--- a/util.h
+++ b/util.h
@@ -152,10 +152,10 @@ const char *xbasename(const char *path);
* @param buf
* The stat buffer to fill.
* @param flags
- * AT_* flags for this call. Will be updated if a fallback happens.
+ * AT_* flags for this call.
* @return 0 on success, -1 on failure.
*/
-int xfstatat(int fd, const char *path, struct stat *buf, int *flags);
+int xfstatat(int fd, const char *path, struct stat *buf, int flags);
/**
* Convert a stat() st_mode to a bftw() typeflag.