Stop passing owned strings to fail!().

The ~"string" expression is being removed in upstream rust.
This commit is contained in:
Ms2ger 2014-05-03 12:16:49 +02:00
parent a6f235e285
commit 86df4c1fc1
11 changed files with 19 additions and 19 deletions

View file

@ -324,7 +324,7 @@ impl Page {
debug!("script: layout joined")
}
None => fail!(~"reader forked but no join port?"),
None => fail!("reader forked but no join port?"),
}
}
}