Changeset 473 for trunk/kernel/fs/fatfs.c
- Timestamp:
- Aug 21, 2018, 6:01:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/fs/fatfs.c
r463 r473 55 55 ////////////////////////////////////////////////////////////////////////////////////////// 56 56 57 static inline int get_length( int offset , int length ) { return length; }58 59 static inline int get_offset( int offset , int length ) { return offset; }57 static inline int get_length( int offset , int length ) { if( offset + 1 ) return length; } 58 59 static inline int get_offset( int offset , int length ) { if( length + 1 ) return offset; } 60 60 61 61
Note: See TracChangeset
for help on using the changeset viewer.