File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -213,8 +213,7 @@ fn main() {
213
213
let target2 = target. clone ( ) ;
214
214
cfg. field_name ( move |struct_, field| {
215
215
match field {
216
- "d_namelen" if openbsd && struct_ == "dirent" => "d_namlen" . to_string ( ) ,
217
- "st_birthtime" if openbsd && struct_ == "stat" => "__st_birthtime" . to_string ( ) ,
216
+ "st_birthtime" if openbsd && struct_ == "stat" => "__st_birthtime" . to_string ( ) ,
218
217
"st_birthtime_nsec" if openbsd && struct_ == "stat" => "__st_birthtimensec" . to_string ( ) ,
219
218
// Our stat *_nsec fields normally don't actually exist but are part
220
219
// of a timeval struct
Original file line number Diff line number Diff line change 17
17
pub d_off: :: off_t,
18
18
pub d_reclen: u16 ,
19
19
pub d_type: u8 ,
20
- pub d_namelen : u8 ,
20
+ pub d_namlen : u8 ,
21
21
__d_padding: [ u8 ; 4 ] ,
22
22
pub d_name: [ :: c_char; 256 ] ,
23
23
}
You can’t perform that action at this time.
0 commit comments