mirror of
https://github.com/servo/servo.git
synced 2025-06-11 01:50:10 +00:00
Fix incorrect string joining
This commit is contained in:
parent
57eed5baa4
commit
2a2e037a4d
1 changed files with 2 additions and 2 deletions
|
@ -6771,8 +6771,8 @@ class CGRegisterProxyHandlers(CGThing):
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue