You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/02 14:08:50 UTC

[incubator-nuttx] branch master updated (804c719 -> d7352eb)

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from 804c719  getnameinfo: Rename a variable to avoid shadowing a global
     new 9aee140  fix INTPTR_MAX define
     new d7352eb  fix long line comment

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 include/stdint.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)


[incubator-nuttx] 01/02: fix INTPTR_MAX define

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 9aee1407f1747c158776519afa454ea2b88e5129
Author: Nakamura, Yuuichi <Yu...@sony.com>
AuthorDate: Fri Feb 7 19:18:25 2020 +0900

    fix INTPTR_MAX define
---
 include/stdint.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/stdint.h b/include/stdint.h
index 6f2f153..66114cd 100644
--- a/include/stdint.h
+++ b/include/stdint.h
@@ -134,7 +134,7 @@
 /* Limits of integer types capable of holding object pointers */
 
 #define INTPTR_MIN          PTR_MIN
-#define INTPTR_MAX          PTR_MIN
+#define INTPTR_MAX          PTR_MAX
 #define UINTPTR_MAX         UPTR_MAX
 
 /* Limits of greatest-width integer types */


[incubator-nuttx] 02/02: fix long line comment

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit d7352eb8557c88e154f2ac624e020f7b00545459
Author: Nakamura, Yuuichi <Yu...@sony.com>
AuthorDate: Thu Apr 2 22:38:03 2020 +0900

    fix long line comment
---
 include/stdint.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/stdint.h b/include/stdint.h
index 66114cd..60be0e5 100644
--- a/include/stdint.h
+++ b/include/stdint.h
@@ -200,8 +200,8 @@
  * architecture-specific logic with leading underscore character. This file
  * typedef's these to the final name without the underscore character.  This
  * roundabout way of doings things allows the stdint.h to be removed from the
- * include/ directory in the event that the user prefers to use the definitions
- * provided by their toolchain header files.
+ * include/ directory in the event that the user prefers to use the
+ * definitions provided by their toolchain header files.
  */
 
 typedef _int8_t             int8_t;