Skip to content

Commit

Permalink
Fix incorrect string joining
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanaz committed Jun 21, 2020
1 parent 57eed5b commit 2a2e037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/script/dom/bindings/codegen/CodegenRust.py
Expand Up @@ -6771,8 +6771,8 @@ def __init__(self, config):
self.root = CGList([
CGGeneric(
"#[allow(non_upper_case_globals)]\n"
"pub mod proxy_handlers {\n"
"".join(
+ "pub mod proxy_handlers {\n"
+ "".join(
" pub static %s: std::sync::atomic::AtomicPtr<libc::c_void> =\n"
" std::sync::atomic::AtomicPtr::new(std::ptr::null_mut());\n"
% desc.name
Expand Down

0 comments on commit 2a2e037

Please sign in to comment.