summaryrefslogtreecommitdiff
path: root/src/fcntl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/fcntl.rs')
-rw-r--r--src/fcntl.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fcntl.rs b/src/fcntl.rs
index 23d60ced..a7e0a81b 100644
--- a/src/fcntl.rs
+++ b/src/fcntl.rs
@@ -147,13 +147,13 @@ mod consts {
const O_TMPFILE = 0o20000000,
const O_NDELAY = O_NONBLOCK.bits
}
- )
+ );
bitflags!(
flags FdFlag: c_int {
const FD_CLOEXEC = 1
}
- )
+ );
}
#[cfg(any(target_os = "macos", target_os = "ios"))]
@@ -180,11 +180,11 @@ mod consts {
const O_NDELAY = O_NONBLOCK.bits,
const O_FSYNC = O_SYNC.bits
}
- )
+ );
bitflags!(
flags FdFlag: c_int {
const FD_CLOEXEC = 1
}
- )
+ );
}