pkarashchenko commented on code in PR #9160:
URL: https://github.com/apache/nuttx/pull/9160#discussion_r1183455492


##########
net/can/can_getsockopt.c:
##########
@@ -172,14 +169,13 @@ int can_getsockopt(FAR struct socket *psock, int level, 
int option,
              * to me in this case.
              */
 
-            ret              = -EINVAL;
+            ret  = -EINVAL;

Review Comment:
   ```suggestion
               ret = -EINVAL;
   ```



##########
net/bluetooth/bluetooth_container.c:
##########
@@ -144,7 +144,7 @@ FAR struct bluetooth_container_s 
*bluetooth_container_allocate(void)
       net_unlock();
       container = (FAR struct bluetooth_container_s *)
         kmm_malloc((sizeof (struct bluetooth_container_s)));

Review Comment:
   ```suggestion
           kmm_malloc((sizeof(struct bluetooth_container_s)));
   ```



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