From 078fff6bc3a9a14ee11ec979397a193d4468ca90 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Thu, 18 Dec 2014 23:06:37 +0100 Subject: Add all now needed ';' after macro invocations. --- src/fcntl.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/fcntl.rs') 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 } - ) + ); } -- cgit v1.2.3