Changeset 509


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

Cleanup misc compilation warnings with gcc

Location:
pjproject/trunk
Files:
9 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 
  • pjproject/trunk/pjlib/src/pjlib-test/test.h

    r433 r509  
    2222#include <pj/types.h> 
    2323 
    24 #define GROUP_LIBC                  0 
    25 #define GROUP_OS                    0 
    26 #define GROUP_DATA_STRUCTURE        0 
    27 #define GROUP_NETWORK               0 
    28 #define GROUP_FILE                  0 
     24#define GROUP_LIBC                  1 
     25#define GROUP_OS                    1 
     26#define GROUP_DATA_STRUCTURE        1 
     27#define GROUP_NETWORK               1 
     28#define GROUP_FILE                  1 
    2929 
    3030#define INCLUDE_ERRNO_TEST          GROUP_LIBC 
  • pjproject/trunk/pjlib/src/pjlib-test/thread.c

    r433 r509  
    7373    pj_thread_desc desc; 
    7474    pj_thread_t *this_thread; 
    75     unsigned id = *pcounter; 
     75    unsigned id; 
    7676    pj_status_t rc; 
    7777 
     78    id = *pcounter; 
    7879    TRACE__((THIS_FILE, "     thread %d running..", id)); 
    7980 
  • pjproject/trunk/pjlib/src/pjlib-test/timestamp.c

    r433 r509  
    196196    } 
    197197 
    198     sleep(0); 
     198    pj_thread_sleep(0); 
    199199 
    200200    /* Mark end time. */ 
  • pjproject/trunk/pjlib/src/pjlib-test/udp_echo_srv_ioqueue.c

    r65 r509  
    150150        rc = pj_ioqueue_poll(ioqueue, &timeout); 
    151151    } 
     152    return 0; 
    152153} 
    153154 
  • pjproject/trunk/pjlib/src/pjlib-test/udp_echo_srv_sync.c

    r65 r509  
    5656        } 
    5757    } 
     58    return 0; 
    5859} 
    5960 
     
    159160        } 
    160161    } 
     162    return 0; 
    161163} 
    162164 
  • pjproject/trunk/pjmedia/src/pjmedia/portaudio/pa_unix_oss.c

    r65 r509  
    962962    int temp, nativeFormat; 
    963963    int sr = (int)sampleRate; 
    964     PaSampleFormat availableFormats, hostFormat; 
     964    PaSampleFormat availableFormats = 0, hostFormat; 
    965965    int chans = component->userChannelCount; 
    966966    int frgmt; 
     
    11651165    const PaDeviceInfo *inputDeviceInfo = 0, *outputDeviceInfo = 0; 
    11661166    int bpInitialized = 0; 
    1167     double inLatency, outLatency; 
     1167    double inLatency=0, outLatency=0; 
    11681168 
    11691169    /* validate platform specific flags */ 
     
    15231523    PaError result = paNoError; 
    15241524    PaOssStream *stream = (PaOssStream*)userData; 
    1525     unsigned long framesAvail, framesProcessed; 
     1525    unsigned long framesAvail=0, framesProcessed; 
    15261526    int callbackResult = paContinue; 
    15271527    int triggered = stream->triggered;  /* See if SNDCTL_DSP_TRIGGER has been issued already */ 
  • pjproject/trunk/pjmedia/src/pjmedia/sdp_neg.c

    r501 r509  
    905905        } 
    906906    } else { 
    907         pjmedia_sdp_session *answer; 
     907        pjmedia_sdp_session *answer = NULL; 
    908908 
    909909        status = create_answer(pool, neg->neg_local_sdp, neg->neg_remote_sdp, 
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r503 r509  
    650650    pj_status_t status; 
    651651 
    652     PJSUA_LOCK(); 
    653  
    654652    status = pj_sock_socket(PJ_AF_INET, PJ_SOCK_DGRAM, 0, &sock); 
    655653    if (status != PJ_SUCCESS) { 
    656654        pjsua_perror(THIS_FILE, "socket() error", status); 
    657         goto on_return; 
     655        return status; 
    658656    } 
    659657 
     
    662660        pjsua_perror(THIS_FILE, "bind() error", status); 
    663661        pj_sock_close(sock); 
    664         goto on_return; 
     662        return status; 
    665663    } 
    666664 
     
    686684            pjsua_perror(THIS_FILE, "Error resolving with STUN", status); 
    687685            pj_sock_close(sock); 
    688             goto on_return; 
     686            return status; 
    689687        } 
    690688 
     
    698696            pjsua_perror(THIS_FILE, "Unable to resolve local host", status); 
    699697            pj_sock_close(sock); 
    700             goto on_return; 
     698            return status; 
    701699        } 
    702700 
     
    709707    *p_sock = sock; 
    710708 
    711 on_return: 
    712  
    713     PJSUA_UNLOCK(); 
    714  
    715709    PJ_LOG(4,(THIS_FILE, "SIP UDP socket reachable at %s:%d", 
    716710              pj_inet_ntoa(p_pub_addr->sin_addr), 
    717711              (int)pj_ntohs(p_pub_addr->sin_port))); 
    718712 
    719     return status; 
     713    return PJ_SUCCESS; 
    720714} 
    721715 
     
    750744 
    751745        pjsua_transport_config config; 
    752         pj_sock_t sock; 
     746        pj_sock_t sock = PJ_INVALID_SOCKET; 
    753747        pj_sockaddr_in pub_addr; 
    754748        pjsip_host_port addr_name; 
     
    798792    PJSUA_UNLOCK(); 
    799793 
    800     return PJ_SUCCESS; 
     794    return status; 
    801795} 
    802796 
Note: See TracChangeset for help on using the changeset viewer.