diff options
| author | r0cky <mu001999@outlook.com> | 2024-05-30 09:51:27 +0800 |
|---|---|---|
| committer | r0cky <mu001999@outlook.com> | 2024-05-30 09:51:27 +0800 |
| commit | dabd05bbab9df465a580858c3e03dc1797b12deb (patch) | |
| tree | ef0660c4849e779a0454cedfacb6f90f26c26fc7 /compiler/rustc_data_structures/src/profiling.rs | |
| parent | f2e1a3a80ae54734e1a3d306f31c2caebb05de9b (diff) | |
| download | rust-dabd05bbab9df465a580858c3e03dc1797b12deb.tar.gz rust-dabd05bbab9df465a580858c3e03dc1797b12deb.zip | |
Apply x clippy --fix and x fmt
Diffstat (limited to 'compiler/rustc_data_structures/src/profiling.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/profiling.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/profiling.rs b/compiler/rustc_data_structures/src/profiling.rs index c6d51a5d6b4..240f2671c3b 100644 --- a/compiler/rustc_data_structures/src/profiling.rs +++ b/compiler/rustc_data_structures/src/profiling.rs @@ -562,7 +562,7 @@ impl SelfProfiler { // ASLR is disabled and the heap is otherwise deterministic. let pid: u32 = process::id(); let filename = format!("{crate_name}-{pid:07}.rustc_profile"); - let path = output_directory.join(&filename); + let path = output_directory.join(filename); let profiler = Profiler::with_counter(&path, measureme::counters::Counter::by_name(counter_name)?)?; |
