Changeset 98000fb in mainline for kernel/test/avltree/avltree1.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/test/avltree/avltree1.c

    r69e68e3 r98000fb  
    195195}
    196196
    197 static void test_tree_insert(avltree_t *tree, count_t node_count)
     197static void test_tree_insert(avltree_t *tree, size_t node_count)
    198198{
    199199        unsigned int i;
     
    202202        avltree_create(tree);
    203203       
    204         TPRINTF("Inserting %" PRIc " nodes...", node_count);
     204        TPRINTF("Inserting %" PRIs " nodes...", node_count);
    205205       
    206206        for (i = 0; i < node_count; i++) {
     
    215215}
    216216
    217 static void test_tree_delete(avltree_t *tree, count_t node_count,
     217static void test_tree_delete(avltree_t *tree, size_t node_count,
    218218    int node_position)
    219219{
     
    246246}
    247247
    248 static void test_tree_delmin(avltree_t *tree, count_t node_count)
     248static void test_tree_delmin(avltree_t *tree, size_t node_count)
    249249{
    250250        unsigned int i = 0;
Note: See TracChangeset for help on using the changeset viewer.