You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/07/29 17:06:51 UTC

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #4247: Redirect _l function to non-locale version

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



##########
File path: libs/libc/string/lib_strcoll.c
##########
@@ -56,4 +56,9 @@ int strcoll(const char *a, const char *b)
 {
   return strcmp(a, b);
 }
+
+int strcoll_l(const char *a, const char *b, locale_t l)

Review comment:
       ```suggestion
   int strcoll_l(FAR const char *a, FAR const char *b, locale_t l)
   ```
   Missing `FAR` qualifier.




-- 
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-unsubscribe@nuttx.apache.org

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