Skip to content

Commit

Permalink
fix newline around format macro
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Durrenberger committed Dec 5, 2024
1 parent 31c883e commit 0243f68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/wdk-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> = LazyLock::new(|| {
format!(r"
format!(
r"
extern crate alloc;
/// Struct to encapsulate a function table.
Expand Down

0 comments on commit 0243f68

Please sign in to comment.