Changeset e9b00d7 in rtems


Ignore:
Timestamp:
11/16/99 15:40:40 (24 years ago)
Author:
Jennifer Averett <Jennifer.Averett@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
f9879915
Parents:
d37aa444
Message:

Removed compiler warning.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • c/src/tests/psxtests/psxstat/test.c

    rd37aa444 re9b00d7  
    195195
    196196    printf("\n\tst_dev     (0x%x:0x%x)\n", major1, minor1 );
    197     printf(  "...st_ino     %x\n", statbuf.st_ino );
     197    printf(  "...st_ino     %x\n", (int) statbuf.st_ino );
    198198    printf(  "...st_mode    %o\n", statbuf.st_mode );
    199199    printf(  "...st_nlink   %x\n", statbuf.st_nlink );
  • testsuites/psxtests/psxstat/test.c

    rd37aa444 re9b00d7  
    195195
    196196    printf("\n\tst_dev     (0x%x:0x%x)\n", major1, minor1 );
    197     printf(  "...st_ino     %x\n", statbuf.st_ino );
     197    printf(  "...st_ino     %x\n", (int) statbuf.st_ino );
    198198    printf(  "...st_mode    %o\n", statbuf.st_mode );
    199199    printf(  "...st_nlink   %x\n", statbuf.st_nlink );
Note: See TracChangeset for help on using the changeset viewer.