[rtems commit] rtems-rfs-buffer.c: Correct printf() format specifiers to eliminate warnings

Joel Sherrill joel at rtems.org
Thu Sep 4 13:59:25 UTC 2014


Module:    rtems
Branch:    master
Commit:    2dd1e75ed9f693afe7d5f255a821a17f8eefbf69
Changeset: http://git.rtems.org/rtems/commit/?id=2dd1e75ed9f693afe7d5f255a821a17f8eefbf69

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Wed Sep  3 09:59:10 2014 -0500

rtems-rfs-buffer.c: Correct printf() format specifiers to eliminate warnings

---

 cpukit/libfs/src/rfs/rtems-rfs-buffer.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
index 3d89f5f..4192b21 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
@@ -52,13 +52,12 @@ rtems_rfs_scan_chain (rtems_chain_control*   chain,
     buffer = (rtems_rfs_buffer*) node;
 
     if (rtems_rfs_trace (RTEMS_RFS_TRACE_BUFFER_CHAINS))
-      printf ("%" PRIuPTR " ", ((intptr_t) buffer->user));
+      printf ("%p ", buffer->user);
 
     if (((rtems_rfs_buffer_block) ((intptr_t)(buffer->user))) == block)
     {
       if (rtems_rfs_trace (RTEMS_RFS_TRACE_BUFFER_CHAINS))
-        printf (": found block=%" PRIuPTR "\n",
-                ((intptr_t)(buffer->user)));
+        printf (": found block=%p\n", buffer->user);
 
       (*count)--;
       rtems_chain_extract_unprotected (node);



More information about the vc mailing list