Ignore:
Timestamp:
Nov 8, 2005 12:46:10 PM (18 years ago)
Author:
bennylp
Message:

Linux alpha test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/main/pjlib/src/pjlib-test/list.c

    r17 r35  
    4141{ 
    4242    list_node *node = (list_node*)nd; 
    43     return ((int)value == node->value) ? 0 : -1; 
     43    return ((long)value == node->value) ? 0 : -1; 
    4444} 
    4545 
     
    191191            return -1; 
    192192        } 
    193         p = (list_node*) pj_list_search(&list, (void*)i, &compare_node); 
     193        p = (list_node*) pj_list_search(&list, (void*)(long)i, &compare_node); 
    194194        pj_assert( p == &nodes[i] ); 
    195195        if (p != &nodes[i]) { 
Note: See TracChangeset for help on using the changeset viewer.