about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-08-29 18:29:21 -0700
committerPatrick Walton <pcwalton@mimiga.net>2012-08-29 18:29:21 -0700
commit70d3633c0b66c247b97f721653d33264ddfc680f (patch)
tree2aa0db4616f23ecc00dbf9806b41b4544d86aa0b /src/libstd
parent59bdd8bde67e0e8df8ed845515c686aad40b2d01 (diff)
libstd: Fix some build breakage
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/time.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/time.rs b/src/libstd/time.rs
index a0ed1599cdf..c0466fb99f2 100644
--- a/src/libstd/time.rs
+++ b/src/libstd/time.rs
@@ -36,8 +36,8 @@ extern mod rustrt {
 /// A record specifying a time value in seconds and nanoseconds.
 type Timespec = {sec: i64, nsec: i32};
 
-impl timespec : Eq {
-    pure fn eq(&&other: timespec) -> bool {
+impl Timespec : Eq {
+    pure fn eq(&&other: Timespec) -> bool {
         self.sec == other.sec && self.nsec == other.nsec
     }
 }