Ignore:
Timestamp:
2008-02-27T11:49:17Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
56976a17
Parents:
fdb7795
Message:

code cleanup (mostly signed/unsigned)
allow extra compiler warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/mm/backend_anon.c

    rfdb7795 r6c441cf8  
    9999                if (!frame) {
    100100                        bool allocate = true;
    101                         int i;
     101                        unsigned int i;
    102102                       
    103103                        /*
     
    194194            cur != &area->used_space.leaf_head; cur = cur->next) {
    195195                btree_node_t *node;
    196                 int i;
     196                unsigned int i;
    197197               
    198198                node = list_get_instance(cur, btree_node_t, leaf_link);
     
    200200                        uintptr_t base = node->key[i];
    201201                        count_t count = (count_t) node->value[i];
    202                         int j;
     202                        unsigned int j;
    203203                       
    204204                        for (j = 0; j < count; j++) {
Note: See TracChangeset for help on using the changeset viewer.