File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -213,8 +213,7 @@ fn main() {
213213 let target2 = target. clone ( ) ;
214214 cfg. field_name ( move |struct_, field| {
215215 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 ( ) ,
218217 "st_birthtime_nsec" if openbsd && struct_ == "stat" => "__st_birthtimensec" . to_string ( ) ,
219218 // Our stat *_nsec fields normally don't actually exist but are part
220219 // of a timeval struct
Original file line number Diff line number Diff line change 1717 pub d_off: :: off_t,
1818 pub d_reclen: u16 ,
1919 pub d_type: u8 ,
20- pub d_namelen : u8 ,
20+ pub d_namlen : u8 ,
2121 __d_padding: [ u8 ; 4 ] ,
2222 pub d_name: [ :: c_char; 256 ] ,
2323 }
You can’t perform that action at this time.
0 commit comments