Changeset e65e406 in mainline for uspace/srv/fs/fat/fat_directory.c


Ignore:
Timestamp:
2011-06-12T14:45:38Z (14 years ago)
Author:
Oleg Romanenko <romanenko.oleg@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c6aca755
Parents:
17fa0280
Message:

Fixes for mips32 big endian.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_directory.c

    r17fa0280 re65e406  
    118118                                        (di->checksum == FAT_LFN_CHKSUM(d))) {
    119119                                        /* Right order! */
    120                                         fat_lfn_copy_entry(d, di->lfn_utf16, &di->lfn_offset);
     120                                        di->lfn_offset = fat_lfn_copy_entry(d, di->lfn_utf16,
     121                                            di->lfn_offset);
    121122                                } else {
    122123                                        /* Something wrong with order. Skip this long entries set */
     
    133134                                                        (FAT_LFN_COUNT(d) - 1)) + fat_lfn_size(d);
    134135                                                di->lfn_offset = di->lfn_size;
    135                                                 fat_lfn_copy_entry(d, di->lfn_utf16, &di->lfn_offset);
     136                                                di->lfn_offset = fat_lfn_copy_entry(d, di->lfn_utf16,
     137                                                    di->lfn_offset);
    136138                                                di->checksum = FAT_LFN_CHKSUM(d);
    137139                                        }
Note: See TracChangeset for help on using the changeset viewer.