1
0
mirror of https://git.musl-libc.org/git/musl synced 2025-03-21 01:53:07 +03:00

make type of st_dev explicitly dev_t in x86_64 stat.h

otherwise it's unclear that it's correct. aside from that, it makes
for a gratuitous difference between the x86_64 header and the upcoming
x32 header.
This commit is contained in:
Rich Felker 2014-01-11 11:20:01 -05:00
parent 513136efa4
commit 7acbbdfd5d

@ -2,7 +2,7 @@
* by the corresponding correctly-sized userspace types. */
struct stat {
unsigned long st_dev;
dev_t st_dev;
ino_t st_ino;
nlink_t st_nlink;