Skip to content

Commit

Permalink
Fix incorrect constant for O_LARGEFILE on mips64-linux-musl
Browse files Browse the repository at this point in the history
  • Loading branch information
jam1garner committed Aug 15, 2022
1 parent 08c0f2c commit 6844aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unix/linux_like/linux/musl/b64/mips64.rs
Expand Up @@ -458,7 +458,7 @@ pub const O_SYNC: ::c_int = 0x4010;
pub const O_RSYNC: ::c_int = 0x4010;
pub const O_DSYNC: ::c_int = 0x10;
pub const O_ASYNC: ::c_int = 0x1000;
pub const O_LARGEFILE: ::c_int = 0;
pub const O_LARGEFILE: ::c_int = 0x2000;

pub const EDEADLK: ::c_int = 45;
pub const ENAMETOOLONG: ::c_int = 78;
Expand Down

0 comments on commit 6844aff

Please sign in to comment.