We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2245910 commit f7804efCopy full SHA for f7804ef
src/libstd/sys/unix/fs.rs
@@ -137,7 +137,7 @@ cfg_has_statx! {{
137
Ok(_) => {
138
// We cannot fill `stat64` exhaustively because of private padding fields.
139
let mut stat: stat64 = mem::zeroed();
140
- // c_ulong`` on gnu-mips, `dev_t` otherwise
+ // `c_ulong` on gnu-mips, `dev_t` otherwise
141
stat.st_dev = libc::makedev(buf.stx_dev_major, buf.stx_dev_minor) as _;
142
stat.st_ino = buf.stx_ino as libc::ino64_t;
143
stat.st_nlink = buf.stx_nlink as libc::nlink_t;
0 commit comments