Skip to content

Commit ee3e49f

Browse files
committed
Remove tab characters
1 parent c9e0d0e commit ee3e49f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/unix/notbsd/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -627,15 +627,15 @@ pub const CLONE_NEWPID: ::c_int = 0x20000000;
627627
pub const CLONE_NEWNET: ::c_int = 0x40000000;
628628
pub const CLONE_IO: ::c_int = 0x80000000;
629629

630-
pub const WNOHANG: ::c_int = 1;
630+
pub const WNOHANG: ::c_int = 0x00000001;
631631
pub const WUNTRACED: ::c_int = 0x00000002;
632632
pub const WSTOPPED: ::c_int = WUNTRACED;
633-
pub const WEXITED: ::c_int = 0x00000004;
633+
pub const WEXITED: ::c_int = 0x00000004;
634634
pub const WCONTINUED: ::c_int = 0x00000008;
635-
pub const WNOWAIT: ::c_int = 0x01000000;
635+
pub const WNOWAIT: ::c_int = 0x01000000;
636636

637637
pub const __WNOTHREAD: ::c_int = 0x20000000;
638-
pub const __WALL: ::c_int = 0x40000000;
638+
pub const __WALL: ::c_int = 0x40000000;
639639
pub const __WCLONE: ::c_int = 0x80000000;
640640

641641
pub const SPLICE_F_MOVE: ::c_uint = 0x01;

0 commit comments

Comments
 (0)