Fix various tidy issues.

This commit is contained in:
Emilio Cobos Álvarez 2018-10-19 00:46:28 +02:00
parent fb0702476a
commit b66e828842
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
8 changed files with 12 additions and 11 deletions

View file

@ -6,9 +6,9 @@
use cssparser::Parser;
use gecko_bindings::bindings;
use gecko_bindings::structs::root::nsStyleImageRequest;
use gecko_bindings::structs::root::mozilla::CORSMode;
use gecko_bindings::structs::root::mozilla::css::URLValue;
use gecko_bindings::structs::root::nsStyleImageRequest;
use gecko_bindings::sugar::ownership::{HasArcFFI, FFIArcHelpers};
use gecko_bindings::sugar::refptr::RefPtr;
use malloc_size_of::{MallocSizeOf, MallocSizeOfOps};
@ -235,7 +235,7 @@ impl ToComputedValue for SpecifiedImageUrl {
fn serialize_computed_url<W>(
url_value: &URLValue,
dest: &mut CssWriter<W>,
get_url: unsafe extern "C" fn(*const URLValue, *mut nsCString) -> (),
get_url: unsafe extern "C" fn(*const URLValue, *mut nsCString),
) -> fmt::Result
where
W: Write,