about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMichael Neumann <mneumann@ntecs.de>2015-09-02 10:57:57 +0200
committerMichael Neumann <mneumann@ntecs.de>2015-09-02 10:57:57 +0200
commit52e7f5553e85cc939b25b478f83c32b91dc3885e (patch)
tree7f7a5390a93acf53dae8e8c7984fcc3068c956fd /src/libstd
parent0dbbab904916236d59446b9f51944a057e7b9966 (diff)
downloadrust-52e7f5553e85cc939b25b478f83c32b91dc3885e.tar.gz
rust-52e7f5553e85cc939b25b478f83c32b91dc3885e.zip
Fix compile on DragonFly: Replace unknown uint32_t/in64_t by u32/i64.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/os/dragonfly/raw.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/os/dragonfly/raw.rs b/src/libstd/os/dragonfly/raw.rs
index 41e8f9b0567..1c265fa62f1 100644
--- a/src/libstd/os/dragonfly/raw.rs
+++ b/src/libstd/os/dragonfly/raw.rs
@@ -65,11 +65,11 @@ pub struct stat {
     #[stable(feature = "raw_ext", since = "1.1.0")]
     pub st_flags: fflags_t,
     #[stable(feature = "raw_ext", since = "1.1.0")]
-    pub st_gen: uint32_t,
+    pub st_gen: u32,
     #[stable(feature = "raw_ext", since = "1.1.0")]
-    pub st_lspare: int32_t,
+    pub st_lspare: i32,
     #[stable(feature = "raw_ext", since = "1.1.0")]
-    pub st_qspare1: int64_t,
+    pub st_qspare1: i64,
     #[stable(feature = "raw_ext", since = "1.1.0")]
-    pub st_qspare2: int64_t,
+    pub st_qspare2: i64,
 }