summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Zellweger <mail@gerdzellweger.com>2018-10-23 18:06:08 -0700
committerGerd Zellweger <gzellweger@vmware.com>2018-11-21 17:03:34 -0800
commit1f038a5d6da46862c3a3f8b19112ef910b8440f5 (patch)
tree11acd36a75a011936d0fa2b165a4b946bd8d535a
parent52b2015e83697e6210dd0fb30db841db6f505e80 (diff)
downloadrust-libc-1f038a5d6da46862c3a3f8b19112ef910b8440f5.tar.gz
Break long line to make style check pass.
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
-rw-r--r--src/unix/notbsd/linux/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs
index e6f31dc721..f839bd229b 100644
--- a/src/unix/notbsd/linux/mod.rs
+++ b/src/unix/notbsd/linux/mod.rs
@@ -1696,7 +1696,8 @@ pub const SOF_TIMESTAMPING_OPT_STATS: ::c_uint = 1 << 12;
pub const SOF_TIMESTAMPING_OPT_PKTINFO: ::c_uint = 1 << 13;
pub const SOF_TIMESTAMPING_OPT_TX_SWHW: ::c_uint = 1 << 14;
pub const SOF_TIMESTAMPING_LAST: ::c_uint = SOF_TIMESTAMPING_OPT_TX_SWHW;
-pub const SOF_TIMESTAMPING_MASK: ::c_uint = (SOF_TIMESTAMPING_LAST - 1) | SOF_TIMESTAMPING_LAST;
+pub const SOF_TIMESTAMPING_MASK: ::c_uint = (SOF_TIMESTAMPING_LAST - 1)
+ | SOF_TIMESTAMPING_LAST;
f! {
pub fn CPU_ZERO(cpuset: &mut cpu_set_t) -> () {