From f69e26f4d97316063b6c20f0c71d7568d8d42a76 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Fri, 30 Aug 2013 17:10:09 +0100 Subject: [PATCH] Upgrade to rustc 0.8-pre (0ac3e02 2013-08-30 05:45:45 -0700) --- util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.rs b/util.rs index 3eab7af..a0d965a 100644 --- a/util.rs +++ b/util.rs @@ -36,6 +36,6 @@ pub fn net_qname_to_rust_str<'a>(qname: &'a CssQName) -> &'a str { // FIXME: These methods should be unsafe pub trait VoidPtrLike { - fn from_void_ptr(*c_void) -> Self; + fn from_void_ptr(ptr: *c_void) -> Self; fn to_void_ptr(&self) -> *c_void; }