From 0243f685be485d7893b509bd31037bbfcd66a1dc Mon Sep 17 00:00:00 2001 From: Leon Durrenberger Date: Wed, 4 Dec 2024 16:10:49 -0800 Subject: [PATCH] fix newline around format macro --- crates/wdk-sys/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/wdk-sys/build.rs b/crates/wdk-sys/build.rs index 60a46ada..05a64960 100644 --- a/crates/wdk-sys/build.rs +++ b/crates/wdk-sys/build.rs @@ -48,7 +48,8 @@ const WDF_FUNCTION_COUNT_DECLARATION_TABLE_INDEX: &str = " let wdf_function_count = crate::_WDFFUNCENUM::WdfFunctionTableNumEntries as usize;"; static WDF_FUNCTION_TABLE_TEMPLATE: LazyLock = LazyLock::new(|| { - format!(r" + format!( + r" extern crate alloc; /// Struct to encapsulate a function table.