diff options
author | Linus Färnstrand <linus@mullvad.net> | 2018-08-29 13:13:37 +0200 |
---|---|---|
committer | Linus Färnstrand <linus@mullvad.net> | 2018-08-29 13:15:26 +0200 |
commit | 6030e50aefd3717fcf611f4e11487c627bf1f95c (patch) | |
tree | cf73c0aea9f0cc80a4360172a97de8b47e8f4b4b /nftnl/src/expr/ct.rs | |
parent | e97f3e90c35cd15b53915fd136c6a4c433c79834 (diff) |
Fix all changed libc imports
Diffstat (limited to 'nftnl/src/expr/ct.rs')
-rw-r--r-- | nftnl/src/expr/ct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nftnl/src/expr/ct.rs b/nftnl/src/expr/ct.rs index 78a2dd4..dfcd332 100644 --- a/nftnl/src/expr/ct.rs +++ b/nftnl/src/expr/ct.rs @@ -1,5 +1,5 @@ use libc; -use nftnl_sys::{self as sys, c_char}; +use nftnl_sys::{self as sys, libc::c_char}; use super::Expression; use {ErrorKind, Result}; |