Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c2be410 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Fix compiler warning in UML code."

parents 5ae084f1 95c2b51a
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -174,7 +174,8 @@ void syscall_trace_enter(struct pt_regs *regs)
	if (!test_thread_flag(TIF_SYSCALL_TRACE))
		return;

	tracehook_report_syscall_entry(regs);
	/* Avoid "unused result" warning. */
	if (tracehook_report_syscall_entry(regs)) return;
}

void syscall_trace_leave(struct pt_regs *regs)