From e38658762dd4f0793b042abfb6225aae4c84f39b Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Sun, 6 Nov 2011 07:08:32 +0000 Subject: =?UTF-8?q?2011-11-06=20=20=20=20=20=20Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libfs/src/rfs/rtems-rfs-dir.c: Rename PRIdoff_t into PRIooff_t. --- cpukit/libfs/src/rfs/rtems-rfs-dir.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/libfs') diff --git a/cpukit/libfs/src/rfs/rtems-rfs-dir.c b/cpukit/libfs/src/rfs/rtems-rfs-dir.c index 1f2e5fd518..0b0275cec0 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-dir.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-dir.c @@ -32,9 +32,9 @@ #include #if SIZEOF_OFF_T == 8 -#define PRIdoff_t PRIo64 +#define PRIooff_t PRIo64 #elif SIZEOF_OFF_T == 4 -#define PRIdoff_t PRIo32 +#define PRIooff_t PRIo32 #else #error "unsupported size of off_t" #endif @@ -630,7 +630,7 @@ rtems_rfs_dir_read (rtems_rfs_file_system* fs, dirent->d_namlen = elength; if (rtems_rfs_trace (RTEMS_RFS_TRACE_DIR_READ)) - printf ("rtems-rfs: dir-read: found off:%" PRIdoff_t " ino:%ld name=%s\n", + printf ("rtems-rfs: dir-read: found off:%" PRIooff_t " ino:%ld name=%s\n", dirent->d_off, dirent->d_ino, dirent->d_name); break; } -- cgit v1.2.3