Changeset 519 for trunk/boot
- Timestamp:
- Aug 27, 2018, 10:49:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/boot/tsar_mips32/boot_fat32.c
r474 r519 48 48 * @ returns the field offset. * 49 49 ****************************************************************************/ 50 static inline int get_offset(int offset, int size) 51 { 52 if( size + 1 ) return offset; 53 50 static inline 51 int get_offset( 52 int offset, 53 int size __attribute__ ((unused))) 54 { 55 return offset; 54 56 } // get_offset() 55 57 … … 63 65 * @ returns the field length. * 64 66 ****************************************************************************/ 65 static inline int get_size(int offset, int size) 66 { 67 if( offset + 1 ) return size; 68 67 static inline 68 int get_size( 69 int offset __attribute__ ((unused)), 70 int size) 71 { 72 return size; 69 73 } // get_size() 70 74
Note: See TracChangeset
for help on using the changeset viewer.