Skip to content

Commit 0b9d0b0

Browse files
committed
Fix test of issue 3656
1 parent 3c0ff12 commit 0b9d0b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/ui/issues/issue-3656.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
#![feature(rustc_private)]
1313

1414
extern crate libc;
15-
use libc::{c_uint, uint32_t, c_void};
15+
use libc::{c_uint, c_void};
1616

1717
pub struct KEYGEN {
1818
hash_algorithm: [c_uint; 2],
19-
count: uint32_t,
19+
count: u32,
2020
salt: *const c_void,
21-
salt_size: uint32_t,
21+
salt_size: u32,
2222
}
2323

2424
extern {

0 commit comments

Comments
 (0)