aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2014-11-19 07:23:53 +0100
committertomaka <pierre.krieger1708@gmail.com>2014-11-19 07:23:53 +0100
commitf9c9c201d730c1a305d31343edeabb18b01ed357 (patch)
treeba958f58d89df21411c2abdc5d9b44a82406a17d /src/lib.rs
parent4edb3df155c2bb1b58b2a93d87fae0860a09d1fe (diff)
parentff3a29aaf5eaa95716eea849aea0b087a325113e (diff)
downloadglutin-f9c9c201d730c1a305d31343edeabb18b01ed357.tar.gz
glutin-f9c9c201d730c1a305d31343edeabb18b01ed357.zip
Merge pull request #124 from tomaka/update-rustc
Update for rustc
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d65b415..7505580 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -79,7 +79,7 @@ pub enum CreationError {
impl std::error::Error for CreationError {
fn description(&self) -> &str {
match self {
- &OsError(ref text) => text.as_slice(),
+ &CreationError::OsError(ref text) => text.as_slice(),
}
}
}