gustavonihei commented on a change in pull request #3781:
URL: https://github.com/apache/incubator-nuttx/pull/3781#discussion_r639179141



##########
File path: drivers/eeprom/spi_xx25xx.c
##########
@@ -850,7 +850,7 @@ int ee25xx_initialize(FAR struct spi_dev_s *dev, FAR char 
*devname,
 
   eedev->readonly = !!readonly;
 
-  finfo("EEPROM device %s, %d bytes, %d per page, addrlen %d, readonly %d\n",
+  finfo("EEPROM device %s, %"PRIu32" bytes, %u per page, addrlen %u, readonly 
%d\n",
        devname, eedev->size, eedev->pgsize, eedev->addrlen, eedev->readonly);

Review comment:
       ```suggestion
     finfo("EEPROM device %s, %" PRIu32 " bytes, %u per page, addrlen %u, "
           "readonly %d\n", devname, eedev->size, eedev->pgsize,
           eedev->addrlen, eedev->readonly);
   ```




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

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


Reply via email to