raiden00pl commented on code in PR #17441:
URL: https://github.com/apache/nuttx/pull/17441#discussion_r2596474237


##########
drivers/can/can.c:
##########
@@ -518,7 +518,7 @@ static ssize_t can_read(FAR struct file *filep, FAR char 
*buffer,
 
   /* ret can be more than buflen due to roundup, so return at most buflen */
 
-  return ret ? MIN(ret, buflen) : -EMSGSIZE;
+  return ret ? MIN(ret, (int)buflen) : -EMSGSIZE;

Review Comment:
   I haven't analyzed much the new code that introduced this regression, so I 
don't know. At the moment I just want to fix the regression.
   Ping @Cynerd



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