Skip to content

Commit 72ac033

Browse files
committed
haiku: fix incorrect constant for EMFILE.
1 parent 7bff2dc commit 72ac033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/unix/haiku/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ pub const EISDIR : ::c_int = -2147459063;
542542
pub const ENOTEMPTY : ::c_int = -2147459066;
543543
pub const ENOSPC : ::c_int = -2147459065;
544544
pub const EROFS : ::c_int = -2147459064;
545-
pub const EMFILE : ::c_int = -214745962;
545+
pub const EMFILE : ::c_int = -2147459062;
546546
pub const EXDEV : ::c_int = -2147459061;
547547
pub const ELOOP : ::c_int = -2147459060;
548548
pub const ENOEXEC : ::c_int = -2147478782;

0 commit comments

Comments
 (0)