Changeset 2657


Ignore:
Timestamp:
Apr 28, 2009 3:27:09 PM (15 years ago)
Author:
nanang
Message:

More cleaning up on compile warning.

Location:
pjproject/branches/projects/vs-reorg2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/vs-reorg2/pjsip/src/test/main.c

    r2638 r2657  
    3939    int retval; 
    4040    char **opt_arg; 
     41 
     42    PJ_UNUSED_ARG(argc); 
    4143 
    4244    /* Parse arguments. */ 
  • pjproject/branches/projects/vs-reorg2/third_party/g7221/common/basic_op.c

    r2639 r2657  
    17151715{ 
    17161716    Word16 neg_var2; 
    1717     UWord32 L_var_out; 
     1717    UWord32 L_var_out = 0; 
    17181718 
    17191719    if (var2 <= 0) 
  • pjproject/branches/projects/vs-reorg2/third_party/ilbc/iCBSearch.c

    r721 r2657  
    235235           /* unrestricted search */ 
    236236 
    237            if (CB_RESRANGE == -1) { 
     237#          if CB_RESRANGE == -1 
     238           //if (CB_RESRANGE == -1) { 
    238239               sInd=0; 
    239240               eInd=range-1; 
    240241               sIndAug=20; 
    241242               eIndAug=39; 
    242            } 
    243  
    244  
    245  
    246  
    247  
     243           //} 
     244 
     245#          else 
    248246 
    249247           /* restricted search around best index from first 
    250248           codebook section */ 
    251249 
    252            else { 
     250           //else { 
    253251               /* Initialize search indices */ 
    254252               sIndAug=0; 
     
    308306                   } 
    309307               } 
    310            } 
     308 
     309           //} 
     310#          endif /* CB_RESRANGE == -1 */ 
     311 
    311312 
    312313           /* search of higher codebook section */ 
  • pjproject/branches/projects/vs-reorg2/third_party/srtp/crypto/math/datatypes.c

    r1730 r2657  
    150150  case ('f'): return 0xf; 
    151151  case ('F'): return 0xf; 
    152   default: return -1;   /* this flags an error */ 
    153   } 
    154   /* NOTREACHED */ 
    155   return -1;  /* this keeps compilers from complaining */ 
     152  default: break;   /* this flags an error */ 
     153  } 
     154  return -1; 
    156155} 
    157156 
  • pjproject/branches/projects/vs-reorg2/third_party/srtp/include/srtp_priv.h

    r2654 r2657  
    101101#endif 
    102102 
    103 #ifdef _MSC_VER 
    104 #   pragma warning( pop )  
    105 #endif 
    106  
    107103 
    108104typedef struct { 
     
    164160} srtcp_trailer_t; 
    165161 
     162#endif 
     163 
     164 
     165#ifdef _MSC_VER 
     166#   pragma warning( pop )  
    166167#endif 
    167168 
Note: See TracChangeset for help on using the changeset viewer.