aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dion Dokter <diondokter@gmail.com> 2023-07-21 14:17:07 +0200
committerGravatar Dion Dokter <diondokter@gmail.com> 2023-07-21 14:17:07 +0200
commitce12620be0e51f9a8bbe6bb67cfc131201b55f34 (patch)
tree0690673fc0e67ddaf82a9ac799c69768614c1a79
parentf07d5b3241cb2e70c37d049caab64d75ef32860b (diff)
downloadcortex-m-ce12620be0e51f9a8bbe6bb67cfc131201b55f34.tar.gz
cortex-m-ce12620be0e51f9a8bbe6bb67cfc131201b55f34.tar.zst
cortex-m-ce12620be0e51f9a8bbe6bb67cfc131201b55f34.zip
fmt
-rw-r--r--cortex-m-rt/macros/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cortex-m-rt/macros/src/lib.rs b/cortex-m-rt/macros/src/lib.rs
index d89bdea..0477405 100644
--- a/cortex-m-rt/macros/src/lib.rs
+++ b/cortex-m-rt/macros/src/lib.rs
@@ -356,8 +356,7 @@ pub fn exception(args: TokenStream, input: TokenStream) -> TokenStream {
}
f.sig.ident = Ident::new(&format!("__cortex_m_rt_{}", f.sig.ident), Span::call_site());
- let tramp_ident =
- Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
+ let tramp_ident = Ident::new(&format!("{}_trampoline", f.sig.ident), Span::call_site());
if args.trampoline {
let ident = &f.sig.ident;