mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
linux(4): Move ff variable initialization from declaration.
Modern style(9) allows variables initialization where they are declared, but in this case initialization obfuscate the code. MFC after: 2 weeks
This commit is contained in:
parent
c2cc5345b8
commit
1af0780b5f
1 changed files with 2 additions and 1 deletions
|
|
@ -134,13 +134,14 @@ static int
|
|||
linux_clone_proc(struct thread *td, struct l_clone_args *args)
|
||||
{
|
||||
struct fork_req fr;
|
||||
int error, ff = RFPROC | RFSTOPPED, f2;
|
||||
int error, ff, f2;
|
||||
struct proc *p2;
|
||||
struct thread *td2;
|
||||
int exit_signal;
|
||||
struct linux_emuldata *em;
|
||||
|
||||
f2 = 0;
|
||||
ff = RFPROC | RFSTOPPED;
|
||||
if (LINUX_SIG_VALID(args->exit_signal)) {
|
||||
exit_signal = linux_to_bsd_signal(args->exit_signal);
|
||||
} else if (args->exit_signal != 0)
|
||||
|
|
|
|||
Loading…
Reference in a new issue