Changeset 8d49b7c in rtems
- Timestamp:
- 08/05/03 20:26:09 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 318d861
- Parents:
- d14ba48
- Location:
- cpukit/libfs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libfs/ChangeLog
rd14ba48 r8d49b7c 1 2003-08-05 <djc915@mail.usask.ca> 2 3 PR 443/filesystem 4 * src/imfs/deviceio.c: deviceio.c mishandles return codes 5 1 6 2003-08-05 Thomas Doerfler <Thomas.Doerfler@imd-systems.de> 2 7 -
cpukit/libfs/src/imfs/deviceio.c
rd14ba48 r8d49b7c 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.