This is an automated email from the ASF dual-hosted git repository.

acassis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit 558fa503d07d356ba09beda7f4672c61d80b1062
Author: Petro Karashchenko <petro.karashche...@gmail.com>
AuthorDate: Fri Jul 7 12:42:36 2023 +0300

    libs/libc/misc: fix alignment in fdcheck
    
    Signed-off-by: Petro Karashchenko <petro.karashche...@gmail.com>
---
 libs/libc/misc/lib_fdcheck.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/libc/misc/lib_fdcheck.c b/libs/libc/misc/lib_fdcheck.c
index e174483884..9163faacee 100644
--- a/libs/libc/misc/lib_fdcheck.c
+++ b/libs/libc/misc/lib_fdcheck.c
@@ -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();
     }
 

Reply via email to