Skip to content

Commit 76ca532

Browse files
committed
Run clang-format
1 parent 8875a68 commit 76ca532

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tracer/TraceExecutor.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,8 @@ std::tuple<TraceAction, int> TraceExecutor::handleTraceeSignal(
205205
// Mask is shifted by one because the lowest bit of SigCgt mask
206206
// corresponds to signal 1, not 0.
207207
uint64_t caughtSignals =
208-
procfs::readProcFS(tracee.getPid(), procfs::Field::SIG_CGT) << 1;
208+
procfs::readProcFS(tracee.getPid(), procfs::Field::SIG_CGT)
209+
<< 1;
209210
caughtSignals |= IGNORED_SIGNALS;
210211
if ((caughtSignals & (1 << signal)) == 0U) {
211212
outputBuilder_->setKillSignal(signal);

0 commit comments

Comments
 (0)