summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-13 16:10:08 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-17 10:05:03 -0500
commit4b7df86b8e8148eeb886f93a91305948478169ac (patch)
treeec771da0ba929786c03f1339cf408638ec742270 /cpukit/libfs
parentbsp/mpc55xx: Fix flash settings (diff)
downloadrtems-4b7df86b8e8148eeb886f93a91305948478169ac.tar.bz2
cpukit/libdl/rtl-obj-comp.c: Use correct printf() specification
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
index 3d89f5fa43..d99a351a7f 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c
@@ -52,12 +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 ("%" PRIiPTR " ", ((intptr_t) 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",
+ printf (": found block=%" PRIiPTR "\n",
((intptr_t)(buffer->user)));
(*count)--;