xiaoxiang781216 commented on code in PR #15958:
URL: https://github.com/apache/nuttx/pull/15958#discussion_r1986487693


##########
audio/audio_comp.c:
##########
@@ -51,8 +51,8 @@ struct audio_comp_priv_s
 
   /* This is the contained, low-level audio device array and count. */
 
-  FAR struct audio_lowerhalf_s **lower;
   int count;
+  FAR struct audio_lowerhalf_s **lower;

Review Comment:
   could save one pointer space by:
   ```suggestion
     FAR struct audio_lowerhalf_s *lower[1];
   ```



-- 
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: commits-unsubscr...@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to