Skip to content

Commit

Permalink
Fix test of issue 3656
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Aug 1, 2019
1 parent 3c0ff12 commit 0b9d0b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/ui/issues/issue-3656.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
#![feature(rustc_private)]

extern crate libc;
use libc::{c_uint, uint32_t, c_void};
use libc::{c_uint, c_void};

pub struct KEYGEN {
hash_algorithm: [c_uint; 2],
count: uint32_t,
count: u32,
salt: *const c_void,
salt_size: uint32_t,
salt_size: u32,
}

extern {
Expand Down

0 comments on commit 0b9d0b0

Please sign in to comment.