Skip to content

Commit a9cddbc

Browse files
committed
Prefer hexadecimal representation of O_TMPFILE on linux-sparc64
1 parent a4fb64a commit a9cddbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/notbsd/linux/other/b64/sparc64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ pub const O_DSYNC: ::c_int = 0x2000;
145145
pub const O_FSYNC: ::c_int = 0x802000;
146146
pub const O_NOATIME: ::c_int = 0x200000;
147147
pub const O_PATH: ::c_int = 0x1000000;
148-
pub const O_TMPFILE: ::c_int = 0o200000000 | O_DIRECTORY;
148+
pub const O_TMPFILE: ::c_int = 0x2000000 | O_DIRECTORY;
149149

150150
pub const MAP_GROWSDOWN: ::c_int = 0x0200;
151151

0 commit comments

Comments
 (0)