diff options
| author | SparrowLii <liyuan179@huawei.com> | 2023-11-23 10:35:33 +0800 |
|---|---|---|
| committer | SparrowLii <liyuan179@huawei.com> | 2023-11-23 10:35:33 +0800 |
| commit | c238e875734143c829f6294b4e86e14795922c47 (patch) | |
| tree | 2af650e204edb5d270c453fd1f8fdaaa043fc6a4 /compiler/rustc_query_system | |
| parent | d5e4bd89222c149cec295757fe203b58aa522edf (diff) | |
| download | rust-c238e875734143c829f6294b4e86e14795922c47.tar.gz rust-c238e875734143c829f6294b4e86e14795922c47.zip | |
Nit of deadlock detected
Diffstat (limited to 'compiler/rustc_query_system')
| -rw-r--r-- | compiler/rustc_query_system/src/query/job.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_query_system/src/query/job.rs b/compiler/rustc_query_system/src/query/job.rs index 726bda76b01..b38d71733b5 100644 --- a/compiler/rustc_query_system/src/query/job.rs +++ b/compiler/rustc_query_system/src/query/job.rs @@ -545,7 +545,7 @@ pub fn deadlock(query_map: QueryMap, registry: &rayon_core::Registry) { if query_map.len() == 0 { panic!("deadlock detected without any query!") } else { - panic!("deadlock detected! current query map:\n{:?}", query_map); + panic!("deadlock detected! current query map:\n{:#?}", query_map); } } |
