fix: compilation issue w/ refactored type · patricklam/verify-rust-std@1342ef1 (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 1342ef1
fix: compilation issue w/ refactored type
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -416,8 +416,8 @@ impl File { | ||
416 | 416 | dwHighDateTime: (info.LastWriteTime >> 32) as u32, |
417 | 417 | }, |
418 | 418 | change_time: Some(c::FILETIME { |
419 | -dhLowDateTime: info.ChangeTime as c::DWORD, | |
420 | -dhHighDateTime: (info.ChangeTime >> 32) as c::DWORD, | |
419 | +dwLowDateTime: info.ChangeTime as u32, | |
420 | +dwHighDateTime: (info.ChangeTime >> 32) as u32, | |
421 | 421 | }), |
422 | 422 | file_size: 0, |
423 | 423 | reparse_tag: 0, |