We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3079f98 commit 034fdbdCopy full SHA for 034fdbd
src/backend.rs
@@ -1,11 +1,11 @@
1
extern crate libc;
2
3
-use self::libc::{c_int, c_uint, uint8_t};
+use self::libc::{c_int, c_uint};
4
use crate::defines::{AfError, Backend};
5
use crate::error::HANDLE_ERROR;
6
7
extern "C" {
8
- fn af_set_backend(bknd: uint8_t) -> c_int;
+ fn af_set_backend(bknd: u8) -> c_int;
9
fn af_get_backend_count(num_backends: *mut c_uint) -> c_int;
10
fn af_get_available_backends(backends: *mut c_int) -> c_int;
11
fn af_get_active_backend(backend: *mut c_int) -> c_int;
@@ -18,7 +18,7 @@ extern "C" {
18
/// - `backend` to which to switch to
19
pub fn set_backend(backend: Backend) {
20
unsafe {
21
- let err_val = af_set_backend(backend as uint8_t);
+ let err_val = af_set_backend(backend as u8);
22
HANDLE_ERROR(AfError::from(err_val));
23
}
24
0 commit comments