Skip to content

Commit fc40c0c

Browse files
committed
libstd: io::fs::File::stat() need not to take &mut self.
The same goes for sys::fs::FileDesc::fstat() on Windows. Signed-off-by: NODA, Kai <[email protected]>
1 parent 3a325c6 commit fc40c0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libstd/io/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ impl File {
237237
}
238238

239239
/// Queries information about the underlying file.
240-
pub fn stat(&mut self) -> IoResult<FileStat> {
240+
pub fn stat(&self) -> IoResult<FileStat> {
241241
self.fd.fstat()
242242
.update_err("couldn't fstat file", |e|
243243
format!("{}; path={}", e, self.path.display()))

src/libstd/sys/windows/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl FileDesc {
131131
return ret;
132132
}
133133

134-
pub fn fstat(&mut self) -> IoResult<io::FileStat> {
134+
pub fn fstat(&self) -> IoResult<io::FileStat> {
135135
let mut stat: libc::stat = unsafe { mem::zeroed() };
136136
match unsafe { libc::fstat(self.fd(), &mut stat) } {
137137
0 => Ok(mkstat(&stat)),

0 commit comments

Comments
 (0)