about summary refs log tree commit diff
diff options
context:
space:
mode:
authorStypox <stypox@pm.me>2025-07-22 13:45:37 +0200
committerStypox <stypox@pm.me>2025-07-25 09:22:19 +0200
commit00de833b60b6198f092901e1b2f6a10e6f3a89da (patch)
tree0dc3f2efe37944a1fac55c29c88fa6b1bb6f3baf
parent2a81b4fad6bc5d089808d10cd880de040339cea6 (diff)
downloadrust-00de833b60b6198f092901e1b2f6a10e6f3a89da.tar.gz
rust-00de833b60b6198f092901e1b2f6a10e6f3a89da.zip
Fix missing $ in enter_trace_span!
-rw-r--r--src/tools/miri/src/helpers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/src/helpers.rs b/src/tools/miri/src/helpers.rs
index ccfff7fa94b..6e80bc5da9e 100644
--- a/src/tools/miri/src/helpers.rs
+++ b/src/tools/miri/src/helpers.rs
@@ -1465,7 +1465,7 @@ pub struct MaybeEnteredTraceSpan {
 #[macro_export]
 macro_rules! enter_trace_span {
     ($name:ident :: $subname:ident $($tt:tt)*) => {{
-        enter_trace_span!(stringify!($name), $name = %stringify!(subname) $($tt)*)
+        enter_trace_span!(stringify!($name), $name = %stringify!($subname) $($tt)*)
     }};
 
     ($($tt:tt)*) => {