Use "ffi" namespace.

This commit is contained in:
Chris Cole 2014-12-10 22:11:29 -05:00
parent fb1c815274
commit f0de773888
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ impl BigNum {
pub fn mod_word(&self, w: c_ulong) -> c_ulong {
unsafe {
BN_mod_word(self.raw(), w)
ffi::BN_mod_word(self.raw(), w)
}
}