Skip to content

Commit b137822

Browse files
committed
chore: add labels to FIXMEs
1 parent 998ed1c commit b137822

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/unix/bsd/apple/mod.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1891,7 +1891,7 @@ cfg_if! {
18911891
.field("pth_curpri", &self.pth_curpri)
18921892
.field("pth_priority", &self.pth_priority)
18931893
.field("pth_maxpriority", &self.pth_maxpriority)
1894-
// FIXME(macos): .field("pth_name", &self.pth_name)
1894+
// FIXME(debug): .field("pth_name", &self.pth_name)
18951895
.finish()
18961896
}
18971897
}
@@ -1957,8 +1957,8 @@ cfg_if! {
19571957
.field("f_fssubtype", &self.f_fssubtype)
19581958
.field("f_fstypename", &self.f_fstypename)
19591959
.field("f_type", &self.f_type)
1960-
// FIXME(macos): .field("f_mntonname", &self.f_mntonname)
1961-
// FIXME(macos): .field("f_mntfromname", &self.f_mntfromname)
1960+
// FIXME(debug): .field("f_mntonname", &self.f_mntonname)
1961+
// FIXME(debug): .field("f_mntfromname", &self.f_mntfromname)
19621962
.field("f_reserved", &self.f_reserved)
19631963
.finish()
19641964
}
@@ -2008,7 +2008,7 @@ cfg_if! {
20082008
.field("d_reclen", &self.d_reclen)
20092009
.field("d_namlen", &self.d_namlen)
20102010
.field("d_type", &self.d_type)
2011-
// FIXME(macos): .field("d_name", &self.d_name)
2011+
// FIXME(debug): .field("d_name", &self.d_name)
20122012
.finish()
20132013
}
20142014
}
@@ -2037,7 +2037,7 @@ cfg_if! {
20372037
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
20382038
f.debug_struct("pthread_rwlock_t")
20392039
.field("__sig", &self.__sig)
2040-
// FIXME(macos): .field("__opaque", &self.__opaque)
2040+
// FIXME(debug): .field("__opaque", &self.__opaque)
20412041
.finish()
20422042
}
20432043
}
@@ -2065,7 +2065,7 @@ cfg_if! {
20652065
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
20662066
f.debug_struct("pthread_mutex_t")
20672067
.field("__sig", &self.__sig)
2068-
// FIXME(macos): .field("__opaque", &self.__opaque)
2068+
// FIXME(debug): .field("__opaque", &self.__opaque)
20692069
.finish()
20702070
}
20712071
}
@@ -2094,7 +2094,7 @@ cfg_if! {
20942094
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
20952095
f.debug_struct("pthread_cond_t")
20962096
.field("__sig", &self.__sig)
2097-
// FIXME(macoso): .field("__opaque", &self.__opaque)
2097+
// FIXME(debug): .field("__opaque", &self.__opaque)
20982098
.finish()
20992099
}
21002100
}
@@ -2133,7 +2133,7 @@ cfg_if! {
21332133
.field("ss_family", &self.ss_family)
21342134
.field("__ss_pad1", &self.__ss_pad1)
21352135
.field("__ss_align", &self.__ss_align)
2136-
// FIXME(macos): .field("__ss_pad2", &self.__ss_pad2)
2136+
// FIXME(debug): .field("__ss_pad2", &self.__ss_pad2)
21372137
.finish()
21382138
}
21392139
}
@@ -2173,13 +2173,13 @@ cfg_if! {
21732173
impl fmt::Debug for utmpx {
21742174
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
21752175
f.debug_struct("utmpx")
2176-
// FIXME(macos): .field("ut_user", &self.ut_user)
2176+
// FIXME(debug): .field("ut_user", &self.ut_user)
21772177
.field("ut_id", &self.ut_id)
21782178
.field("ut_line", &self.ut_line)
21792179
.field("ut_pid", &self.ut_pid)
21802180
.field("ut_type", &self.ut_type)
21812181
.field("ut_tv", &self.ut_tv)
2182-
// FIXME(macos): .field("ut_host", &self.ut_host)
2182+
// FIXME(debug): .field("ut_host", &self.ut_host)
21832183
.field("ut_pad", &self.ut_pad)
21842184
.finish()
21852185
}
@@ -2421,7 +2421,7 @@ cfg_if! {
24212421
.field("pth_curpri", &self.pth_curpri)
24222422
.field("pth_priority", &self.pth_priority)
24232423
.field("pth_maxpriority", &self.pth_maxpriority)
2424-
// FIXME(macos): .field("pth_name", &self.pth_name)
2424+
// FIXME(debug): .field("pth_name", &self.pth_name)
24252425
.finish()
24262426
}
24272427
}

0 commit comments

Comments
 (0)