Skip to content

Commit dabf377

Browse files
committed
Made uv_stat_t.{st_dev, st_ino} public, #9958
1 parent 7d69837 commit dabf377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/rt/uv/uvll.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ pub struct uv_timespec_t {
138138
}
139139

140140
pub struct uv_stat_t {
141-
priv st_dev: libc::uint64_t,
141+
st_dev: libc::uint64_t,
142142
st_mode: libc::uint64_t,
143143
priv st_nlink: libc::uint64_t,
144144
priv st_uid: libc::uint64_t,
145145
priv st_gid: libc::uint64_t,
146146
priv st_rdev: libc::uint64_t,
147-
priv st_ino: libc::uint64_t,
147+
st_ino: libc::uint64_t,
148148
st_size: libc::uint64_t,
149149
priv st_blksize: libc::uint64_t,
150150
priv st_blocks: libc::uint64_t,

0 commit comments

Comments
 (0)