diff options
author | Mischa Jonker <mjonker@synopsys.com> | 2013-03-22 17:30:47 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-03-22 21:22:32 +0100 |
commit | 946799cd0ce0c6c803c9cb173a84f4d607bde350 (patch) | |
tree | d15474f643dc79f0fd02c43087c183856fed1659 /libc/sysdeps/linux/common-generic/bits | |
parent | 6239e4c69d7fb09fb2313c0947a28127e1321631 (diff) |
libc: Fix common-generic stat.h for BE
Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common-generic/bits')
-rw-r--r-- | libc/sysdeps/linux/common-generic/bits/stat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common-generic/bits/stat.h b/libc/sysdeps/linux/common-generic/bits/stat.h index 053d43b65..07716abe4 100644 --- a/libc/sysdeps/linux/common-generic/bits/stat.h +++ b/libc/sysdeps/linux/common-generic/bits/stat.h @@ -59,7 +59,7 @@ struct stat unsigned int st_uid; /* User ID of the file's owner. */ unsigned int st_gid; /* Group ID of the file's group.*/ unsigned long __pad3; - unsigned long st_rdev /* Device number, if device. */ + unsigned long st_rdev; /* Device number, if device. */ unsigned long long __pad4; long __pad5; long st_size; /* Size of file, in bytes. */ |