Changeset e3865876 in rtems


Ignore:
Timestamp:
11/06/11 07:08:32 (12 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.11, 5, master
Children:
b799e4eb
Parents:
a6bd46d
Message:

2011-11-06 Ralf Corsépius <ralf.corsepius@…>

  • libfs/src/rfs/rtems-rfs-dir.c: Rename PRIdoff_t into PRIooff_t.
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    ra6bd46d re3865876  
     12011-11-06      Ralf Corsépius <ralf.corsepius@rtems.org>
     2
     3        * libfs/src/rfs/rtems-rfs-dir.c: Rename PRIdoff_t into PRIooff_t.
     4
    152011-11-04      Chris Johns <chrisj@rtems.org>
    26
  • cpukit/libfs/src/rfs/rtems-rfs-dir.c

    ra6bd46d re3865876  
    3333
    3434#if SIZEOF_OFF_T == 8
    35 #define PRIdoff_t PRIo64
     35#define PRIooff_t PRIo64
    3636#elif SIZEOF_OFF_T == 4
    37 #define PRIdoff_t PRIo32
     37#define PRIooff_t PRIo32
    3838#else
    3939#error "unsupported size of off_t"
     
    631631     
    632632      if (rtems_rfs_trace (RTEMS_RFS_TRACE_DIR_READ))
    633         printf ("rtems-rfs: dir-read: found off:%" PRIdoff_t " ino:%ld name=%s\n",
     633        printf ("rtems-rfs: dir-read: found off:%" PRIooff_t " ino:%ld name=%s\n",
    634634                dirent->d_off, dirent->d_ino, dirent->d_name);
    635635      break;
Note: See TracChangeset for help on using the changeset viewer.