mirror of
https://github.com/denoland/deno.git
synced 2025-02-23 21:53:26 -05:00
Remove unnecessary mutable
This commit is contained in:
parent
452b295d4e
commit
7cd2a6de65
1 changed files with 1 additions and 1 deletions
|
@ -829,7 +829,7 @@ fn stat_extra(
|
|||
use winapi::um::minwinbase::FileBasicInfo;
|
||||
use winapi::um::winbase::GetFileInformationByHandleEx;
|
||||
|
||||
let mut file_info = {
|
||||
let file_info = {
|
||||
let mut file_info = std::mem::MaybeUninit::<FILE_BASIC_INFO>::zeroed();
|
||||
if GetFileInformationByHandleEx(
|
||||
handle,
|
||||
|
|
Loading…
Add table
Reference in a new issue