From 1f038a5d6da46862c3a3f8b19112ef910b8440f5 Mon Sep 17 00:00:00 2001 From: Gerd Zellweger <mail@gerdzellweger.com> Date: Tue, 23 Oct 2018 18:06:08 -0700 Subject: [PATCH] Break long line to make style check pass. Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com> --- src/unix/notbsd/linux/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs index e6f31dc7..f839bd22 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) -> () { -- GitLab