Changeset 57e76cb in mainline


Ignore:
Timestamp:
2008-11-30T11:36:51Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
323a5aaf
Parents:
8d2760f
Message:

The number of the first sector in the FAT node structure must be in the host
endianess.

File:
1 edited

Legend:

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

    r8d2760f r57e76cb  
    410410            (uint16_t) -1) == 0) {
    411411                /* No clusters allocated to the node yet. */
    412                 nodep->firstc = host2uint16_t_le(mcl);
     412                nodep->firstc = mcl;
    413413                nodep->dirty = true;            /* need to sync node */
    414414                return;
Note: See TracChangeset for help on using the changeset viewer.