Skip to content

Commit

Permalink
Fix unsigned long size name for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallpierce committed Jan 18, 2017
1 parent 983abfa commit 088a656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/c.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ define_type!(long, i32, test_long_metrics, GFp_long_align, GFp_long_size,

#[cfg(any(target_os = "windows", target_pointer_width = "32"))]
define_type!(unsigned_long, u32, test_unsigned_long_metrics,
GFp_long_align, GFp_unsigned_long_size,
GFp_long_align, GFp_long_size,
"The C `unsigned long` type. Equivalent to `libc::c_ulong`.");

#[cfg(not(any(target_os = "windows", target_pointer_width = "32")))]
Expand Down

0 comments on commit 088a656

Please sign in to comment.