summaryrefslogtreecommitdiff
path: root/src/sys/signal.rs
diff options
context:
space:
mode:
authorVictor Berger <victor.berger@m4x.org>2014-12-18 23:06:37 +0100
committerVictor Berger <victor.berger@m4x.org>2014-12-18 23:07:02 +0100
commit078fff6bc3a9a14ee11ec979397a193d4468ca90 (patch)
treeaeff852ae6e7a1cc0a528ce0e088cbc4b8c6b210 /src/sys/signal.rs
parent6485539402b8a976c0857ac89c0c701fcff8c1e3 (diff)
downloadnix-078fff6bc3a9a14ee11ec979397a193d4468ca90.zip
Add all now needed ';' after macro invocations.
Diffstat (limited to 'src/sys/signal.rs')
-rw-r--r--src/sys/signal.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sys/signal.rs b/src/sys/signal.rs
index 2507e1e9..f08e2617 100644
--- a/src/sys/signal.rs
+++ b/src/sys/signal.rs
@@ -65,7 +65,7 @@ pub mod signal {
const SA_RESTART = 0x10000000,
const SA_SIGINFO = 0x00000004,
}
- )
+ );
pub const SIGTRAP: libc::c_int = 5;
pub const SIGIOT: libc::c_int = 6;
@@ -144,7 +144,7 @@ pub mod signal {
const SA_RESTART = 0x10000000,
const SA_SIGINFO = 0x00000008,
}
- )
+ );
pub const SIGTRAP: libc::c_int = 5;
pub const SIGIOT: libc::c_int = 6;
@@ -214,7 +214,7 @@ pub mod signal {
const SA_RESTART = 0x0002,
const SA_SIGINFO = 0x0040,
}
- )
+ );
pub const SIGTRAP: libc::c_int = 5;
pub const SIGIOT: libc::c_int = 6;