Skip to content

Commit

Permalink
libs/libc/misc: fix alignment in fdcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Petro Karashchenko <[email protected]>
  • Loading branch information
pkarashchenko authored and acassis committed Jul 7, 2023
1 parent 3fe371f commit 558fa50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/libc/misc/lib_fdcheck.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int fdcheck_restore(int val)
if (pid_expect != pid_now && pid_expect != ppid_now && pid_expect != 0)
{
ferr("pid_expect %d pid_now %d ppid_now %d\n",
pid_expect, pid_now, ppid_now);
pid_expect, pid_now, ppid_now);
PANIC();
}

Expand Down

0 comments on commit 558fa50

Please sign in to comment.