summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/windows/mod.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/windows/mod.rs b/src/windows/mod.rs
index 73c5989b87..4bea45980b 100644
--- a/src/windows/mod.rs
+++ b/src/windows/mod.rs
@@ -75,15 +75,15 @@ s! {
}
pub struct tm {
- tm_sec: ::c_int,
- tm_min: ::c_int,
- tm_hour: ::c_int,
- tm_mday: ::c_int,
- tm_mon: ::c_int,
- tm_year: ::c_int,
- tm_wday: ::c_int,
- tm_yday: ::c_int,
- tm_isdst: ::c_int,
+ pub tm_sec: ::c_int,
+ pub tm_min: ::c_int,
+ pub tm_hour: ::c_int,
+ pub tm_mday: ::c_int,
+ pub tm_mon: ::c_int,
+ pub tm_year: ::c_int,
+ pub tm_wday: ::c_int,
+ pub tm_yday: ::c_int,
+ pub tm_isdst: ::c_int,
}
pub struct timeval {