Fix build by removing needless type prefix

This commit is contained in:
Michael McConville 2015-12-17 02:13:48 -05:00
parent 5b282981d3
commit 33113f86f4

View file

@ -208,7 +208,7 @@ pub struct OsRng {
fn syscall(number: c_long, ...) -> c_long;
}
const NR_GETENTROPY: libc::c_long = 7;
const NR_GETENTROPY: c_long = 7;
impl OsRng {
/// Create a new `OsRng`.