mirror of
https://github.com/servo/servo.git
synced 2025-06-12 18:34:39 +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([
|
self.root = CGList([
|
||||||
CGGeneric(
|
CGGeneric(
|
||||||
"#[allow(non_upper_case_globals)]\n"
|
"#[allow(non_upper_case_globals)]\n"
|
||||||
"pub mod proxy_handlers {\n"
|
+ "pub mod proxy_handlers {\n"
|
||||||
"".join(
|
+ "".join(
|
||||||
" pub static %s: std::sync::atomic::AtomicPtr<libc::c_void> =\n"
|
" pub static %s: std::sync::atomic::AtomicPtr<libc::c_void> =\n"
|
||||||
" std::sync::atomic::AtomicPtr::new(std::ptr::null_mut());\n"
|
" std::sync::atomic::AtomicPtr::new(std::ptr::null_mut());\n"
|
||||||
% desc.name
|
% desc.name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue