You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/11/27 11:48:18 UTC

[incubator-nuttx-apps] 01/02: system/trace/trace_dump.c: Fix typo in a comment (NUL -> NULL).

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

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git

commit c26c4009d90c810ffe4723db26735f4fbef972de
Author: Abdelatif Guettouche <ab...@espressif.com>
AuthorDate: Mon Nov 15 16:48:15 2021 +0100

    system/trace/trace_dump.c: Fix typo in a comment (NUL -> NULL).
    
    Signed-off-by: Abdelatif Guettouche <ab...@espressif.com>
---
 system/trace/trace_dump.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/system/trace/trace_dump.c b/system/trace/trace_dump.c
index a420724..897bbdf 100644
--- a/system/trace/trace_dump.c
+++ b/system/trace/trace_dump.c
@@ -85,7 +85,7 @@ struct trace_dump_task_context_s
   FAR struct trace_dump_task_context_s *next;
   pid_t pid;                              /* Task PID */
   int syscall_nest;                       /* Syscall nest level */
-  char name[CONFIG_TASK_NAME_SIZE + 1];   /* Task name (with NUL terminator) */
+  char name[CONFIG_TASK_NAME_SIZE + 1];   /* Task name (with NULL terminator) */
 };
 
 struct trace_dump_context_s