summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/inttypes.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-10 09:05:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-10 09:06:56 +0100
commit7bde91bd5fd20e2c0c91193728c793e0675bdc03 (patch)
tree396a0aa9a2b80eafb01eb9671c57bd17c7a62f43 /cpukit/include/rtems/inttypes.h
parentpsxconfig01: Fix pre-processor conditions (diff)
downloadrtems-7bde91bd5fd20e2c0c91193728c793e0675bdc03.tar.bz2
Fix format warnings due to ino_t changes
Diffstat (limited to 'cpukit/include/rtems/inttypes.h')
-rw-r--r--cpukit/include/rtems/inttypes.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/cpukit/include/rtems/inttypes.h b/cpukit/include/rtems/inttypes.h
index 4e6e98f507..5af23b22c7 100644
--- a/cpukit/include/rtems/inttypes.h
+++ b/cpukit/include/rtems/inttypes.h
@@ -127,8 +127,11 @@ extern "C" {
/* rtems_signal_set is a typedef to uint32_t */
#define PRIxrtems_signal_set PRIx32
-/* newlib's ino_t is a typedef to "unsigned long" */
-#define PRIxino_t "lx"
+/* newlib's ino_t is a typedef to __uint64_t */
+#define PRIuino_t PRIu64
+
+/* newlib's ino_t is a typedef to __uint64_t */
+#define PRIxino_t PRIx64
/* ioctl_command_t */
#define PRIdioctl_command_t "ld"