summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/inttypes.h
diff options
context:
space:
mode:
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"