Changeset 2164


Ignore:
Timestamp:
Jul 21, 2008 9:15:46 PM (16 years ago)
Author:
bennylp
Message:

Fixed gcc warning on _pjsua.c about suggested parenthesis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/python/_pjsua.c

    r2163 r2164  
    31043104        pj_pool_release(pool); 
    31053105     
    3106     if (status != PJ_SUCCESS) 
     3106    if (status != PJ_SUCCESS) { 
    31073107        Py_XDECREF(pUserData); 
     3108    } 
    31083109 
    31093110    return Py_BuildValue("ii", status, call_id);         
     
    32453246    status = pjsua_call_set_user_data(call_id, (void*)pUserData); 
    32463247     
    3247     if (status != PJ_SUCCESS) 
     3248    if (status != PJ_SUCCESS) { 
    32483249        Py_XDECREF(pUserData); 
     3250    } 
    32493251 
    32503252    return Py_BuildValue("i", status); 
Note: See TracChangeset for help on using the changeset viewer.