Skip to content

Commit b1530ba

Browse files
authored
Apply another clippy suggestion (#1508)
apply another clippy suggestion
1 parent 4dd1fad commit b1530ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/c_api/macro/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ fn prefix_symbol_impl(attributes: TokenStream, input: TokenStream) -> Result<Tok
208208
// No prefix needed since the function is not a part of the Wasm spec.
209209
return Ok(input);
210210
}
211-
let prefixed_fn_name = format!("wasmi_{}", fn_name);
211+
let prefixed_fn_name = format!("wasmi_{fn_name}");
212212
Ok(quote! {
213213
#[export_name = #prefixed_fn_name]
214214
#input

0 commit comments

Comments
 (0)