diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-07-19 00:39:02 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-19 00:39:02 -0400 |
commit | e468ed442d6ee50390d9a75dfd25f66bfb310e2e (patch) | |
tree | 9fbb808465f09f418262a1e625c6b931de7ddbf3 /src | |
parent | dfc81828f7ab41da08f744c44117a1bb20a05749 (diff) | |
download | musl-e468ed442d6ee50390d9a75dfd25f66bfb310e2e.tar.gz musl-e468ed442d6ee50390d9a75dfd25f66bfb310e2e.tar.bz2 musl-e468ed442d6ee50390d9a75dfd25f66bfb310e2e.tar.xz musl-e468ed442d6ee50390d9a75dfd25f66bfb310e2e.zip |
fix inadvertent introduction of extern object stx
commit dfc81828f7ab41da08f744c44117a1bb20a05749 accidentally defined
an instance of struct statx along with the struct declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/stat/fstatat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/fstatat.c b/src/stat/fstatat.c index 31907e98..7de75462 100644 --- a/src/stat/fstatat.c +++ b/src/stat/fstatat.c @@ -31,7 +31,7 @@ struct statx { uint32_t stx_dev_major; uint32_t stx_dev_minor; uint64_t spare[14]; -} stx; +}; static int fstatat_statx(int fd, const char *restrict path, struct stat *restrict st, int flag) { |