We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d8c290 + 5e9c614 commit a04e552Copy full SHA for a04e552
src/fuchsia/mod.rs
@@ -344,8 +344,6 @@ s! {
344
pub struct sockaddr_storage {
345
pub ss_family: sa_family_t,
346
__ss_align: ::size_t,
347
- __ss_pad2: [u8; 128 - 2 * 4],
348
- #[cfg(target_pointer_width = "64")]
349
__ss_pad2: [u8; 128 - 2 * 8],
350
}
351
src/lib.rs
@@ -286,7 +286,7 @@ cfg_if! {
286
} else if #[cfg(target_os = "redox")] {
287
mod redox;
288
pub use redox::*;
289
- } else if #[cfg(target_os = "fuchisa")] {
+ } else if #[cfg(target_os = "fuchsia")] {
290
mod fuchsia;
291
pub use fuchsia::*;
292
} else if #[cfg(unix)] {
0 commit comments