acassis commented on code in PR #18140:
URL: https://github.com/apache/nuttx/pull/18140#discussion_r2727159150


##########
include/nuttx/trace.h:
##########
@@ -39,7 +39,8 @@
 #  define trace_beginex(tag, name) sched_note_beginex(tag, name)
 #  define trace_endex(tag, name) sched_note_endex(tag, name)
 #  define trace_mark(tag, s) sched_note_mark(tag, s)
-#  define trace_printf(tag, fmt, ...) sched_note_printf(tag, fmt, 
##__VA_ARGS__)
+#  define trace_printf(tag, fmt, ...)
+    sched_note_printf(tag, fmt, ##__VA_ARGS__)

Review Comment:
   @aviralgarg05 please take a look, I think when it is a macro you need to 
include "\" to indicate line break. Also if you want to keep it is a single 
line, normally the nxstyle checker doesn't worry about lines with more than 80 
columns. I think it happens because some symbol/register definitions normally 
became more than 80 chars.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to