Ignore:
Timestamp:
Jun 15, 2006 11:04:33 AM (18 years ago)
Author:
bennylp
Message:

Cleanup misc compilation warnings with gcc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pjlib-test/sock.c

    r433 r509  
    9797 
    9898    /* pj_inet_ntoa() */ 
    99     p = pj_inet_ntoa(addr); 
     99    p = (unsigned char*) pj_inet_ntoa(addr); 
    100100    if (!p) 
    101101        return -20; 
    102102 
    103     if (pj_strcmp2(&s, p) != 0) 
     103    if (pj_strcmp2(&s, (char*)p) != 0) 
    104104        return -30; 
    105105 
Note: See TracChangeset for help on using the changeset viewer.