Changeset ff4f073 in mainline for uspace/app/ext2info/ext2info.c


Ignore:
Timestamp:
2011-06-03T22:33:13Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
547c37a, 8d6c1f1
Parents:
5c96b2a (diff), 911ee54 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge ext2 fixes from http://ho.st.dcs.fmph.uniba.sk/~mato/bzr/helenos-ext2.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/ext2info/ext2info.c

    r5c96b2a rff4f073  
    586586        ext2_directory_iterator_t it;
    587587        size_t name_size;
     588        uint32_t inode;
    588589       
    589590        printf("  Directory contents:\n");
     
    600601                printf("    ");
    601602                print_data(&it.current->name, name_size);
    602                 printf(" --> %u\n", it.current->inode);
     603               
     604                inode = ext2_directory_entry_ll_get_inode(it.current);
     605                printf(" --> %u\n", inode);
    603606               
    604607                rc = ext2_directory_iterator_next(&it);
Note: See TracChangeset for help on using the changeset viewer.