Changeset ca15cda0 in rtems for cpukit/libfs/src/imfs/deviceio.c
- Timestamp:
- 08/05/03 20:25:02 (20 years ago)
- Children:
- e8f49680
- Parents:
- 3605c4e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/src/imfs/deviceio.c
r3605c4e rca15cda0 44 44 }; 45 45 46 static unsigned3246 static int 47 47 rtems_deviceio_errno(rtems_status_code code) 48 48 { … … 85 85 (void *) &args 86 86 ); 87 if ( status ) { 88 rtems_deviceio_errno(status); 89 return RTEMS_UNSATISFIED; 90 } 87 if ( status ) 88 return rtems_deviceio_errno(status); 91 89 92 90 return 0; … … 119 117 ); 120 118 if ( status ) { 121 rtems_deviceio_errno(status); 122 return RTEMS_UNSATISFIED; 119 return rtems_deviceio_errno(status); 123 120 } 124 121 return 0;
Note: See TracChangeset
for help on using the changeset viewer.