Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DragonflyBSD build is broken #31009

Closed
dhuseby opened this Issue Jan 18, 2016 · 1 comment

Comments

Projects
None yet
4 participants
@dhuseby
Copy link

dhuseby commented Jan 18, 2016

../src/libstd/sys/unix/fs.rs:202:9: 202:28 error: mismatched types:
 expected `u64`,
    found `u32`
(expected u64,
    found u32) [E0308]
../src/libstd/sys/unix/fs.rs:202         self.entry.d_fileno
                                         ^~~~~~~~~~~~~~~~~~~
@tbu-

This comment has been minimized.

Copy link
Contributor

tbu- commented Apr 17, 2016

This looks fixed:

#[cfg(any(target_os = "freebsd",
target_os = "openbsd",
target_os = "bitrig",
target_os = "netbsd",
target_os = "dragonfly"))]
pub fn ino(&self) -> u64 {
self.entry.d_fileno as u64
}
. Also, a recent commit claimed to fix the DragonflyBSD build: 60c988e, so I guess this issue is fixed as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.