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


##########
arch/arm/src/rp23xx/rp23xx_start.c:
##########
@@ -86,8 +87,21 @@ void __start(void)
 #ifdef CONFIG_BOOT_RUNFROMFLASH
   const uint32_t *src;
 #endif
-  uint32_t *dest;
-  int i;
+  uint32_t            *dest;

Review Comment:
   let's align with line 88
   ```suggestion
     uint32_t       *dest;
   ```



##########
arch/arm/src/rp23xx/rp23xx_start.c:
##########
@@ -86,8 +87,21 @@ void __start(void)
 #ifdef CONFIG_BOOT_RUNFROMFLASH
   const uint32_t *src;
 #endif
-  uint32_t *dest;
-  int i;
+  uint32_t            *dest;
+  int                  i;

Review Comment:
   ```suggestion
     size_t          i;
   ```



-- 
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